SigningPayload
SigningPayload is signed by the client with the keypair associated with an AccountIdentifier using the specified SignatureType. SignatureType can be optionally populated if there is a restriction on the signature scheme that can be used to sign the payload.
Properties
Name | Type | Description | Required |
---|---|---|---|
address | String | [DEPRECATED by account_identifier in v1.4.4 ] The network-specific address of the account that should sign the payload. | False |
account_identifier | AccountIdentifier | The account_identifier uniquely identifies an account within a network. All fields in the account_identifier are utilized to determine this uniqueness (including the metadata field, if populated). | False |
hex_bytes | String | Hex-encoded string of the payload bytes. | True |
signature_type | SignatureType | SignatureType is the type of a cryptographic signature. | False |
Example
{
"address": "string",
"account_identifier": {
"address": "0x3a065000ab4183c6bf581dc1e55a605455fc6d61",
"sub_account": {
"address": "0x6b175474e89094c44da98b954eedeac495271d0f",
"metadata": {}
},
"metadata": {}
},
"hex_bytes": "string",
"signature_type": "ecdsa"
}