Vault server provide Wallet Service between Api servers and Hashicorp Vault
Last updated 7 months ago
Executes a transaction on the Solana blockchain using the provided transaction data and user ID.
API Key
curl -L \ --request POST \ --url 'http://vault-domain.com//execute' \ --header 'Content-Type: application/json' \ --data '{ "tx_data": "text", "user_id": 1 }'
{ "hash": "text" }
Retrieves the private key of the wallet associated with the provided user ID.
curl -L \ --request POST \ --url 'http://vault-domain.com//export' \ --header 'Content-Type: application/json' \ --data '{ "user_id": 1 }'
{ "private_key": "text" }
Retrieves the public key for the wallet associated with the provided user ID.
curl -L \ --request POST \ --url 'http://vault-domain.com//pubkey' \ --header 'Content-Type: application/json' \ --data '{ "user_id": 1 }'
{ "public_key": "text" }
Registers a new wallet for the user ID provided.
curl -L \ --request POST \ --url 'http://vault-domain.com//register' \ --header 'Content-Type: application/json' \ --data '{ "user_id": 1 }'
{ "public_key": "text", "user_id": 1 }
Revokes the existing wallet and generates a new one for the user ID provided.
curl -L \ --request POST \ --url 'http://vault-domain.com//revoke' \ --header 'Content-Type: application/json' \ --data '{ "user_id": 1 }'