API Reference

Get a list of all approved signers for a SubAccount

Signature generation

{
  EIP712Domain: {
    {
      name: 'name', // rysk
      type: 'string',
    },
    {
      name: 'version', // "0.0.0"
      type: 'string',
    },
    {
      name: 'chainId', 
      type: 'uint256',
    },
    {
      name: 'verifyingContract', // <OrderDispatchAddress> 
      type: 'address',
    },
	},
  SignedAuthentication: {
		{
			name: "account",
			type: "address",
		},
		{
			name: "subAccountId",
			type: "uint8",
		},
	},
}

Example response:

[
  {
    "account": "0x123",        // Address of the account
    "subaccount": 0,           // Identifier for the subaccount
    "signer": "0x123",         // Address of the signer
    "approved": true,          // Whether the signer is approved
    "nonce": 12345678,         // Nonce for the approval
    "signature": "0x1234....", // Signature for the approval
    "txHash": "0x1234....",    // Approval transaction hash
    "committed": false         // Whether the approval is committed
  }
]
Language
Click Try It! to start a request and see the response here!