Skip to main content
POST
/
accounts
/
gateway
/
wallet
/
set-default
Set Default Gateway Wallet
curl --request POST \
  --url http://localhost:8000/accounts/gateway/wallet/set-default \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chain": "<string>",
  "address": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

Request to set the default wallet for a chain

chain
string
required

Blockchain chain (e.g., 'solana', 'ethereum')

address
string
required

Wallet address to set as default

Response

Successful Response

The response is of type Response Set Default Gateway Wallet Accounts Gateway Wallet Set Default Post · object.