当前位置: 首页>>代码示例>>Java>>正文


Java Numeric.decodeQuantity方法代码示例

本文整理汇总了Java中org.web3j.utils.Numeric.decodeQuantity方法的典型用法代码示例。如果您正苦于以下问题:Java Numeric.decodeQuantity方法的具体用法?Java Numeric.decodeQuantity怎么用?Java Numeric.decodeQuantity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.web3j.utils.Numeric的用法示例。


在下文中一共展示了Numeric.decodeQuantity方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getFilterId

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getFilterId() {
    return Numeric.decodeQuantity(getResult());
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:ShhNewFilter.java

示例2: getBlockNumber

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getBlockNumber() {
    return Numeric.decodeQuantity(blockNumber);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:Transaction.java

示例3: getTransactionIndex

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getTransactionIndex() {
    return Numeric.decodeQuantity(transactionIndex);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:Transaction.java

示例4: getSize

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getSize() {
    return Numeric.decodeQuantity(size);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:EthBlock.java

示例5: getGasPrice

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getGasPrice() {
    return Numeric.decodeQuantity(gasPrice);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:Transaction.java

示例6: getValue

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getValue() {
    return Numeric.decodeQuantity(value);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:Trace.java

示例7: getGasLimit

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getGasLimit() {
    return Numeric.decodeQuantity(gasLimit);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:EthBlock.java

示例8: getGas

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getGas() {
    return Numeric.decodeQuantity(gas);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:Trace.java

示例9: getAmountUsed

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getAmountUsed() {
    return Numeric.decodeQuantity(getResult());
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:EthEstimateGas.java

示例10: getUncleCount

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getUncleCount() {
    return Numeric.decodeQuantity(getResult());
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:EthGetUncleCountByBlockNumber.java

示例11: getTransactionCount

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getTransactionCount() {
    return Numeric.decodeQuantity(getResult());
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:EthGetBlockTransactionCountByNumber.java

示例12: getQuantity

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getQuantity() {
    return Numeric.decodeQuantity(getResult());
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:NetPeerCount.java

示例13: getGasPrice

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getGasPrice() {
    return Numeric.decodeQuantity(getResult());
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:EthGasPrice.java

示例14: getGasUsed

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getGasUsed() {
    return Numeric.decodeQuantity(gasUsed);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:EthBlock.java

示例15: getExpiry

import org.web3j.utils.Numeric; //导入方法依赖的package包/类
public BigInteger getExpiry() {
    return Numeric.decodeQuantity(expiry);
}
 
开发者ID:web3j,项目名称:web3j,代码行数:4,代码来源:ShhMessages.java


注:本文中的org.web3j.utils.Numeric.decodeQuantity方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。