如何在Android中使用Web3j进行ERC20令牌原始交易(Java,Kotlin)

时间:2019-05-27 05:02:18

标签: java android ethereum web3-java

我正在使用>>> d=({'country':'India','population':89},{'country':'USA','population':78}, {'country':'UK','population':65},{'country':'Canada','population':70}) >>> [v for e in d for i,v in e.items() if isinstance(v,int)] # As you required int values, filter it using "isinstance" [89, 78, 65, 70] # Expected output. >>> [v for e in d for i,v in e.items() if isinstance(v,str)] # For string values ['India', 'USA', 'UK', 'Canada'] 来制作android Cold wallet,我已经成功地使用web3j进行了Ethereum的原始交易,现在我想进行web3j令牌的原始交易但找不到其代码或任何解决方案,因此将不胜感激。

下面是我在ERC20原始事务中使用的代码,该代码提供了事务哈希键。

Ethereum

0 个答案:

没有答案