Create a new wallet (collection of keys) with the given parameters.
MasterDerivationKey is used to derive ed25519 keys for use in wallets
Response to POST /v1/wallet
POST /v1/wallet
APIV1Wallet is the API's representation of a wallet
const response = await fetch('https://algo.nownodes.io/v1/wallet', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "error": false, "message": "text", "wallet": { "driver_name": "text", "driver_version": 0, "id": "text", "mnemonic_ux": false, "name": "text", "supported_txs": [ "text" ] } }