Submit signed transaction
GraphQL API
- Mutation Example
mutation submitSignedTransaction { submitTransaction( input: { signedTx: "..." # A hex string starts with "0x" submitToken: "...." # A JWT string contains the info of this transaction } ) { transactionHash } }
- Annotations for the parameters and attributes
- The expire time of
submitToken
is 10 minutes, it is good to sign and submit the transaction as soon as possible signedTx
is the production of the signing process, please refer to signTransactionExamplesubmitToken
is from the response of the APIs that needs transaction signingtransactionHash
is used to locate the transaction on the Explorer of the Data Network
- The expire time of
Copyright © 2018-2019 FST Network Ltd., all rights reserved.