Uses of Record Class
net.lageto.monero.rpc.model.BlockHeader
Packages that use BlockHeader
Package
Description
Provides clients for interfacing with the Monero crypto-currency P2P and wallet daemons over their HTTP RPC
protocols.
Contains objects that RPC methods may return or use as parameters.
-
Uses of BlockHeader in net.lageto.monero.rpc
Methods in net.lageto.monero.rpc that return BlockHeaderModifier and TypeMethodDescriptionDaemonRpcClient.getBlockHeader(long height)
Fetch a block's header by its height.DaemonRpcClient.getBlockHeader(String hash)
Fetch a block's header by its hash.Methods in net.lageto.monero.rpc that return types with arguments of type BlockHeaderModifier and TypeMethodDescriptionDaemonRpcClient.getBlockHeaderAsync(long height)
Asynchronously fetch a block's header by its height.DaemonRpcClient.getBlockHeaderAsync(String hash)
Asynchronously fetch a block's header by its hash. -
Uses of BlockHeader in net.lageto.monero.rpc.model
Methods in net.lageto.monero.rpc.model that return BlockHeaderModifier and TypeMethodDescriptionBlock.header()
Returns the value of theheader
record component.Constructors in net.lageto.monero.rpc.model with parameters of type BlockHeaderModifierConstructorDescriptionBlock(BlockHeader header, String coinbaseHash, List<String> transactionHashes)
Creates an instance of aBlock
record class.