区块链中文技术社区

RPC获取常见资源数据

实例化EOS对象

const wif = '私钥'
eos = Eos({
        httpEndpoint: 'https://api.eosnewyork.io',
        chainId: 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906',
        keyProvider: wif,
        verbose: true
      })

RAM

eos.getTableRows(true,"eosio","eosio","global",10).then(result => {
    console.log(result.rows[0].max_ram_size/(1024*1024*1024));
})

参考(获取RAM实时价格)

eos.getTableRows(true,"eosio", "eosio", "rammarket").then(result => {
    var ramBaseBalance = result.rows[0].base.balance; // Amount of RAM bytes in use
    ramBaseBalance = ramBaseBalance.substr(0,ramBaseBalance.indexOf(' '));
    console.log(ramBaseBalance);
})
eos.getTableRows(true,"eosio", "eosio", "rammarket").then(result => {
    var ramQuoteBalance = result.rows[0].quote.balance; // Amount of EOS in the RAM collector
    ramQuoteBalance = ramQuoteBalance.substr(0,ramQuoteBalance.indexOf(' '));
    console.log(ramQuoteBalance);
})

NET

eos.getAccount("eosnewyorkio").then(result => {
    var netStaked = result.total_resources.net_weight.substr(0,result.total_resources.net_weight.indexOf(' '));
    var netAvailable = result.net_limit.max / 1024; //~ convert bytes to kilobytes
    netPriceEos = ((netStaked / netAvailable)/3).toFixed(8); //~ divide by 3 to get average per day from 3 day avg
    console.log(netPriceEos);
})

CPU

eos.getAccount("eosnewyorkio").then(result => {
    var cpuStaked = result.total_resources.cpu_weight.substr(0,result.total_resources.cpu_weight.indexOf(' '));
    var cpuAvailable = result.cpu_limit.max / 1000; // convert microseconds to milliseconds
    cpuPriceEos = ((cpuStaked / cpuAvailable)/3).toFixed(8); //~ divide by 3 to get average per day from 3 day avg
    console.log(cpuPriceEos);
})

科普

什么是RAM?

RAM需要在区块链上存储数据,必须购买。 您可以根据当前的RAM市场价格获得一定数量的存储字节数。 价格会根据买卖行为自动调整。 当您释放存储空间时,您可以以当前的市场价格出售RAM以恢复EOS。

什么是网络带宽?

网络带宽的测量值是过去3天内的平均消耗量(以字节为单位)。 每次发送操作或事务时都会暂时消耗净带宽,但会随着时间的推移而减少返回0.净带宽所占用的令牌越多,您使用的越多。 您可以随时取消收回您的EOS令牌。

什么是CPU带宽?

CPU带宽测量为过去3天内的平均消耗量(以微秒为单位)。 发送操作或事务时临时消耗CPU带宽,但随着时间的推移逐渐减少,返回0.事务运行的时间越长,消耗的CPU带宽就越多。 您可以随时取消收回您的EOS令牌。

数据来自:github erp

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »