Sign Endpoints
Sign a Message
Sign Endpoints
Sign a Message
POST
/
v1
/
sign
/
message
curl --request POST \
--url https://vault-api.stardust.gg/v1/sign/message \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"walletId": "1",
"chainType": "EVM",
"chainId": "1",
"message": "<string>"
}'
{
"walletId": "1",
"chainType": "EVM",
"chainId": "1",
"message": "<string>",
"signature": "<string>"
}
Authorizations
Body
application/json
Response
201 - application/json
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://vault-api.stardust.gg/v1/sign/message \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"walletId": "1",
"chainType": "EVM",
"chainId": "1",
"message": "<string>"
}'
{
"walletId": "1",
"chainType": "EVM",
"chainId": "1",
"message": "<string>",
"signature": "<string>"
}