efx-api-node
Version:
<img src="https://avatars3.githubusercontent.com/u/33315316?s=200&v=4" align="right" />
39 lines (24 loc) • 750 B
JavaScript
// Please check ../test/index.js for all examples and tests
const EFX = require('..')
work = async () => {
// assuming you have a provider running at:
// http://localhost:8545
efx = await EFX()
// unlock wallet so we can sign transactions
await efx.account.unlock('password')
// check how much ETH is already locked
let response
response = await efx.contract.locked('ETH')
console.log("")
console.log("efx.getOrders()")
// Cancel all orders
response = await efx.getOrders()
console.log(`Found ${response.length} orders`)
for(const order of response){
console.log("")
console.log( "order #", order.id )
console.log( " amount:", order.amount)
console.log( " price:", order.price)
}
}
work()