INPUT_OBJECT

CreateEthereumTransactionInput

link GraphQL Schema definition

  • input CreateEthereumTransactionInput {
  • # The authentication tokens for the user which to submit the transaction for
  • # signature (optional for API key users)
  • authentication: AuthenticationInput
  • # The EthereumTransaction to be signed
  • ethereumTransaction: EthereumTransactionInput!
  • # A text field identifying where the request to sign came from - your application
  • # name should go here
  • source: String!
  • # Request that when the transaction is signed by the authorised signer(s),
  • # TrustVault will send it directly to the network
  • sendToNetworkWhenSigned: Boolean
  • # The currency to return the assets in. See docs for supported currencies.
  • # defaults to GBP
  • currency: String
  • # If the transaction should be submitted for devices for signing. defaults to
  • # false to allow reviewing transaction data. Set to true when you want to send a
  • # transaction to devices to sign.
  • sendToDevicesForSigning: Boolean
  • }

link Require by