index,instruction,input,output | |
0,Create a function to send a transaction on the NEAR testnet.,"{""receiver_id"": ""example.near"", ""amount"": ""0.1"", ""message"": ""Payment for services""}",Transaction sent successfully. Transaction hash: <transaction_hash> | |
1,What is the structure of a NEAR transaction?,"{""receiver_id"": ""example.near"", ""amount"": ""0.1""}",The transaction structure includes receiver_id and amount. | |
2,How can I retrieve the transaction hash after sending a transaction?,"{""receiver_id"": ""example.near"", ""amount"": ""0.1""}",You can retrieve the transaction hash from the response after sending the transaction. | |
3,Send 0.2 NEAR to the receiver.,"{""receiver_id"": ""receiver.near"", ""amount"": ""0.2""}",Transaction sent successfully. Transaction hash: <transaction_hash> | |
4,Verify the transaction using the transaction hash.,"{""transaction_hash"": ""<transaction_hash>""}",Transaction with hash <transaction_hash> was successful. | |
5,Check the status of a transaction.,"{""transaction_hash"": ""<transaction_hash>""}",The status of the transaction with hash <transaction_hash> is: completed. | |