Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/cookbook/go-gasless.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,12 @@ const nftAbi = [
// truncated for brevity
];

<Note>
**Complete NFT ABI**

In production, you'll need the complete contract ABI. You can find the full ABI for this NFT contract on [BaseScan](https://basescan.org/token/0x83bd615eb93ee1336aca53e185b03b54ff4a17e8#code) under the "Contract" tab. For this example, include at least the `mintTo(address)` function signature.
</Note>

// 9. Example function to send a transaction from a given SmartAccountClient
async function sendTransaction(client, recipientAddress) {
try {
Expand Down