Blocks

給定一個區塊號,我如何使用 Nethereuem 找到區塊雜湊?

  • March 15, 2018

使用 Nethereum,我想在給定塊號(即塊高度)的情況下獲取塊雜湊。

這有效

   blockHash = (await _web3.Eth.Blocks.GetBlockWithTransactionsByNumber.SendRequestAsync(
       new HexBigInteger(relevantBlockNumber))).BlockHash;

引用自:https://ethereum.stackexchange.com/questions/42832