yorxsm commited on
Commit
4301533
·
verified ·
1 Parent(s): 3658398

Upload neartrx_output.csv with huggingface_hub

Browse files
Files changed (1) hide show
  1. neartrx_output.csv +7 -0
neartrx_output.csv ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ index,instruction,input,output
2
+ 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>
3
+ 1,What is the structure of a NEAR transaction?,"{""receiver_id"": ""example.near"", ""amount"": ""0.1""}",The transaction structure includes receiver_id and amount.
4
+ 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.
5
+ 3,Send 0.2 NEAR to the receiver.,"{""receiver_id"": ""receiver.near"", ""amount"": ""0.2""}",Transaction sent successfully. Transaction hash: <transaction_hash>
6
+ 4,Verify the transaction using the transaction hash.,"{""transaction_hash"": ""<transaction_hash>""}",Transaction with hash <transaction_hash> was successful.
7
+ 5,Check the status of a transaction.,"{""transaction_hash"": ""<transaction_hash>""}",The status of the transaction with hash <transaction_hash> is: completed.