From 7b3c439471d6334195afe269185d02b855508b73 Mon Sep 17 00:00:00 2001 From: Earnwithalee7890 Date: Sat, 24 Jan 2026 01:55:45 +0500 Subject: [PATCH] docs: add note about finding complete NFT ABI on BaseScan --- docs/cookbook/go-gasless.mdx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/cookbook/go-gasless.mdx b/docs/cookbook/go-gasless.mdx index c28f67d8c..5cbadb4ff 100644 --- a/docs/cookbook/go-gasless.mdx +++ b/docs/cookbook/go-gasless.mdx @@ -273,6 +273,12 @@ const nftAbi = [ // truncated for brevity ]; + +**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. + + // 9. Example function to send a transaction from a given SmartAccountClient async function sendTransaction(client, recipientAddress) { try {