nujabes403

Results 11 comments of nujabes403

@lispc Good!! Let me know when the code is updated. 👍

@sswsdsn @mlj1991 @flybikeGx @ziranliu @lispc @lileicool1

For your reference: https://web3js.readthedocs.io/en/v1.2.0/web3-eth.html#getpastlogs

@sonyyang49 @little-buddy You need this statement `tx.addApprove('iost', amount)` It makes your transaction approve the amount you set in client side. What you did in .abi file was just setting amount...

You should import IOST library like below: ``` const IOST = require('iost') ``` or ``` import IOST from 'iost' ```

How about using `const IOST = require('iost')` instead?

> We also need a way to tell wallet if transactions need to be sent in order or as a set. Probably some format of [(tx1, tx2), (tx3, tx4)] is...