cURL
curl --request POST \ --url https://testnet.walletkit.com/transactions/sign-message \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "network": "Ethereum", "message_type": "string", "signer_wallet_address": "<string>", "message": "<string>", "developer_secret": "<string>", "user_pin": "<string>" }'
{ "signature": "<string>" }
This endpoint calculates a network-specific signature (e.g. in EIP-191 format EVM networks) for the provided message.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The response is of type object.
object