INPUT_OBJECT

CreateEthSignTypedDataInput

link GraphQL Schema definition

  • input CreateEthSignTypedDataInput {
  • # The authentication tokens for the user which to submit the transaction for
  • # signature (optional for API key users)
  • authentication: AuthenticationInput
  • # The EthSignTypeData to be signed
  • messageAddress: MessageAddressInput!
  • # A text field identifying where the request to sign came from - your application
  • # name should go here
  • source: String!
  • # If the transaction should be submitted for devices for signing. Set to false to
  • # allow reviewing transaction data. Set to true when you want to send a
  • # transaction to devices to sign. Defaults to true.
  • sendToDevicesForSigning: Boolean
  • # A public key of the caller used to encrypt the signature. Must be on the
  • # secp256k1 curve
  • signatureEncryptionPublicKey: String
  • }

link Require by