No description available.
Properties
address
bytes
Required
Ethereum address as bytes (20 bytes)
alsoOn
array
of integer
Optional
List of all Chain IDs (besides the one in the sign-in message, though you can include it) that the holder of this address is also active on & accepts tokens thru.
signature
bytes
Required
Sign in With Ethereum message signature as bytes
siwe
ref
#siweMessage
Required
No description available.
View raw schema
{
"type": "object",
"required": [
"address",
"signature",
"siwe"
],
"properties": {
"siwe": {
"ref": "#siweMessage",
"type": "ref"
},
"alsoOn": {
"type": "array",
"items": {
"type": "integer",
"description": "Chain ID of a Ethereum VM network"
},
"description": "List of all Chain IDs (besides the one in the sign-in message, though you can include it) that the holder of this address is also active on & accepts tokens thru."
},
"address": {
"type": "bytes",
"description": "Ethereum address as bytes (20 bytes)"
},
"signature": {
"type": "bytes",
"description": "Sign in With Ethereum message signature as bytes"
}
}
}