Signs EIP-712 typed data.
Represents the input to sign the EIP-712 typed structured data from a specified user-controlled wallet.
Unique system-generated identifier for the user.
A string represents the typed structured data in EIP-712.
The human readable explanation for this sign action. Useful for presenting with extra information.
Unique system generated identifier of the wallet.
The JSON Web Token (JWT) representing the user.
A string represents the typed structured data in EIP-712.
The human readable explanation for this sign action. Useful for presenting with extra information.
Unique system generated identifier of the wallet.
1const response = await client.signTypedData({
2 userToken: 'dummy-user-token',
3 walletId: 'wallet-id',
4 data: 'typed-data',
5 memo: 'Transfer',
6})
7console.log(response.data?.challengeId)
1{
2 "data": {
3 "challengeId": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5"
4 }
5}