Generate Wallet
This generates a wallet for the merchant. the POST
endpoint accepts the ApiKey
and a secretKey
passed together as the Authorization
in the header and on the body, clientEmailAddress
, currency
and publicKey
are passed.
Fetches a wallet address
GET
https://localhost:5001/api/v1/walletaddress/generate
This generates a wallet address for the specified currency.
Headers
Authorization*
ApiKey {{Secretkey}}
Request Body
clientEmailAddress*
xendfinance@gmail.com
currency*
BUSD
networkChain*
BSC
publicKey*
YOUR_PUBLIC_KEY
clientEmailAddress
string
Required
This is the customer's or client's email address.
currency
enum
Required
This is the current supported currencies.
networkChain
string
Required
This is the network chain of the currency. It can be BSC
, ETH
, POLYGON
, CELO
, ARBITRUM
, AVALANCHE
& HECOCHAIN
.
publicKey
string
Required
This is the publicKey
of the merchant.
Last updated