curl --request DELETE \
--url http://localhost:8000/accounts/gateway/{chain}/{address} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Remove a wallet from Gateway.
Args: chain: Blockchain chain (e.g., ‘solana’, ‘ethereum’) address: Wallet address to remove
Returns: Success message
Raises: HTTPException: 503 if Gateway unavailable
curl --request DELETE \
--url http://localhost:8000/accounts/gateway/{chain}/{address} \
--header 'Authorization: Basic <encoded-value>'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Was this page helpful?