Webserver
This is a webserver using node
and express
, in order to start it you need to run the following commands in the terminal:
npm install
node index.js
We assume that it will run in port 3000 but feel free to change it. Don't forget to update the scritps accordingly though.
Endpoints
The general architecture of the API is the following
Endpoints that receive signed transactions as inputs and they will complete the required transactions. This allow you to sign the transactions of the front end and it is safe to use on a production server because the private key is never sent to the endpoints. To sign the transactions you can see the examples in the scripts folder of this repo.
You can make and end-to-end swap using the
/swap
endpoints. But this is a multi-step process that will fail if one of the single steps fails. It uses Harmony's Horizon Bridge and Viper DEX, so for example, the bridging part can work but if there is no liquidity in the pool so the who transaction will fail. Therefore use this enpoint only if you are sure that Viper's LPs have enough liquidity.If you prefer to do it setp-by-step, you should use the following end-points in the specified order:
/swap/bridge-in
- BridgesBUSD
in ethereum to Harmony'sBUSD
/swap/viper/
- Swaps Harmony'sBUSD
tobscBUSD
(Both are bridged assets in the Harmony network)/swap/bridge-out
- BridgesbscBUSD
into Binance'sBUSD
Right now the following endpoints are enabled, but we will keep adding more reguarly, so remember to pull once in a while.
POST /swap
POST /swap
This endpoint will swap balances between Ethereum BUSD and Binance BUSD, the body for this request should look like this:
amount
: this is a string with the amount in decimals (e.g. "10.50") that you want to swaponeAddress
: this is a string with the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
ethAddress
: this is a string with the address of the wallet owned by the private key in the Ethereum wallet format i.e.Oxaxxxxxxxx
lockApproveTxnHash
: this is a string with the hash of the contract manager's approval for the lock transactionlockTxnHash
: this is a string with the hash of the lock transactionburnApproveTxnHash
: this is a string with the hash of the contract manager's approval for the burn transactiondepositTxnHash
: this is a string with the hash of the deposit transactionburnTxnHash
: this is a string with the hash of the burn transactionrouterContract
: This is a string with the writing approval for Viper's swap router contractfromTokenContract
: This is a string with the transaction approval for the account swapping in Viper
POST /swap/bridge-in
POST /swap/bridge-in
This enpoint will bridges BUSD
in ethereum to Harmony's BUSD
, it is the first step of the step-by-step swap, the body for this request should look like this:
amount
: this is a string with amount in decimals (e.g. "10.50") that you want to swaponeAddress
: the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
ethAddress
: the address of the wallet owned by the private key in the Ethereum wallet format i.e.Oxaxxxxxxxx
lockApproveTxnHash
: this is a string with the hash of the contract manager's approval for the lock transactionlockTxnHash
: this is a string with the hash of the lock transaction
You can see an example of this call in the bridge_eth_to_one.js
file in the scripts folder of the repo
POST /swap/viper
POST /swap/viper
This enpoint will swap Harmony's BUSD
to bscBUSD
(Both are bridged assets in the Harmony network), it is the second step of the step-by-step swap, the body for this request should look like this:
amount
: this is a string with amount in decimals (e.g. "10.50") that you want to swapwallet
: this is the private key of the wallets with the funds, please use an.env
or equivalent to store this key, never put it in your codeoneAddress
: the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
routerContract
: This is a string with the writing approval for Viper's swap router contractfromTokenContract
: This is a string with the transaction approval for the account swapping in Viper
You can see an example of this call in the viper_swap.js
file in the scripts folder of the repo
POST /swap/bridge-out
POST /swap/bridge-out
amount
: this is a string with amount in decimals (e.g. "10.50") that you want to swaponeAddress
: the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
ethAddress
: the address of the wallet owned by the private key in the Ethereum wallet format i.e.Oxaxxxxxxxx
burnApproveTxnHash
: this is a string with the hash of the contract manager's approval for the burn transactiondepositTxnHash
: this is a string with the hash of the deposit transactionburnTxnHash
: this is a string with the hash of the burn transaction
You can see an example of this call in the bridge_one_to_bsc.js
file in the scripts folder of the repo
Local Endpoints
POST /local/swap
POST /local/swap
This enpoint will swap balances between Ethereum BUSD and Binance BUSD, the body for this request should look like this:
amount
: this is a string with amount in decimals (e.g. "10.50") that you want to swapwallet
: this is the private key of the wallets with the funds, please use an.env
or equivalent to store this key, never put it in your codeoneAddress
: the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
ethAddress
: the address of the wallet owned by the private key in the Ethereum wallet format i.e.Oxaxxxxxxxx
You can see an example of this call in the swap.js
file in the testing folder of the repo
POST /local/swap/bridge-in
POST /local/swap/bridge-in
This enpoint will bridges BUSD
in ethereum to Harmony's BUSD
, it is the first step of the step-by-step swap, the body for this request should look like this:
amount
: this is a string with amount in decimals (e.g. "10.50") that you want to swapwallet
: this is the private key of the wallets with the funds, please use an.env
or equivalent to store this key, never put it in your codeoneAddress
: the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
ethAddress
: the address of the wallet owned by the private key in the Ethereum wallet format i.e.Oxaxxxxxxxx
You can see an example of this call in the bridge-lock.js
file in the testing folder of the repo
POST /local/swap/viper
POST /local/swap/viper
This enpoint will swap Harmony's BUSD
to bscBUSD
(Both are bridged assets in the Harmony network), it is the second step of the step-by-step swap, the body for this request should look like this:
amount
: this is a string with amount in decimals (e.g. "10.50") that you want to swapwallet
: this is the private key of the wallets with the funds, please use an.env
or equivalent to store this key, never put it in your codeoneAddress
: the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
You can see an example of this call in the viper.js
file in the testing folder of this repo
POST /local/swap/bridge-out
POST /local/swap/bridge-out
This enpoint will bridges bscBUSD
into Binance's BUSD
, it is the third step of the step-by-step swap, the body for this request should look like this:
amount
: this is a string with amount in decimals (e.g. "10.50") that you want to swapwallet
: this is the private key of the wallets with the funds, please use an.env
or equivalent to store this key, never put it in your codeoneAddress
: the address of the wallet owned by the private key in the Harmony wallet format i.e.oneaxxxxxxxx
ethAddress
: the address of the wallet owned by the private key in the Ethereum wallet format i.e.Oxaxxxxxxxx
You can see an example of this call in the bridge-burn.js
file in the testing folder of this repo
Last updated