Unable to retrieve smart contract response data when creating NFT/SFT tokens

I’m having trouble getting the smart contract response data after minting NFT or SFT tokens. The API endpoint that used to return this information doesn’t seem to work anymore. I need to get the nonce value for the newly created tokens but the response doesn’t include the smart contract results section. Has anyone else run into this issue? What’s the current way to fetch this data from the blockchain after token creation? Any help would be great.

yeah, ran into this exact issue last month - super annoying. don’t wait for the direct response. use the getTransactionInfo endpoint instead - it’ll have the contract execution results once the transaction processes. also double-check your network url. they updated some endpoints recently and the old ones return incomplete data.

I encountered a similar problem lately. The update in the API regarding the response structure for smart contract data has created some challenges. What I found helpful is to pause for about 6-10 seconds following the minting process and then utilize the transaction hash to access the network API directly for the necessary details. This approach ensures you retrieve the complete smart contract response, including the nonce value. It’s crucial to allow sufficient time for the blockchain to finalize the transaction to get accurate data.