Tezos chain considerations
abi: "buy_nft"
customMintParams: {
wallet_address: <WALLET_ADDRESS>,
nft_uri: <NFT_URI>
}Last updated
In the abi parameter of the NFT_INFO only the function name is needed without the list of params
The customMintParams parameter will hold the list of arguments the function in the abi gets and translate them to their michelson representation
For ex:
abi: "buy_nft"
customMintParams: {
wallet_address: <WALLET_ADDRESS>,
nft_uri: <NFT_URI>
}Last updated