POST
/
rpc
/
API
/
IsValidTypedDataSignature
curl --request POST \
  --url https://api.sequence.app/rpc/API/IsValidTypedDataSignature \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --data '{
  "chainId": "<string>",
  "walletAddress": "<string>",
  "typedData": {},
  "signature": "<string>"
}'
{
  "isValid": true
}

Authorizations

X-Access-Key
string
header
required

Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI

Body

application/json
chainId
string
walletAddress
string
typedData
object
signature
string

Response

200
application/json
OK
isValid
boolean