Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.57 KB

eth-outbound.md

File metadata and controls

51 lines (34 loc) · 1.57 KB

Ethereum - Outbound (WETH ⇒ ETH)

Basic Steps

  • Send lock tx on Wanchain
  • Wait for storeman response on Ethereum
  • Send redeem tx on Ethereum
  • Wait for storeman response on Wanchain

Required and optional fields (please ensure you have enough wan on wanchain to cover the gasLimit)

  • to - the receiving Ethereum account
  • from - the sending Wanchain account
  • amount - the value to be transferred

Redeem fields

  • lockTxHash - the lock tx id for locking process

Revoke fields

  • lockTxHash - the lock tx id for locking process

Using wanchain-js-sdk

Simple Usage: if the specified Wanchain and Ethereum accounts are open, just simply invoke a lock action and then invoke a redeem action.

//define the source chain and destination chain
srcChain = global.crossInvoker.getSrcChainNameByContractAddr('WAN', 'WAN');
dstChain = global.crossInvoker.getSrcChainNameByContractAddr('ETH', 'ETH');

// do lock
global.crossInvoker.invoke(srcChain, dstChain, 'LOCK', ethOutboundInput.lockInput);

...

// later, and even maybe else where, do redeem
txHashList = global.wanDb.getItem(walletCore.config.crossCollection, {lockTxHash: lockTxHash});
...
redeemInputCopy = Object.assign({}, ethOutboundInput.redeemInput);
redeemInputCopy.x = txHashList.x;
redeemInputCopy.hashX = txHashList.hashX;
console.log('Starting eth inbound redeem', redeemInputCopy);

retReddem = await global.crossInvoker.invoke(srcChain, dstChain, 'REDEEM', redeemInputCopy)