Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 1x | import { BlockId, Bytes, Checksum256, Int16, Int64, Name, PackedTransaction, PublicKey, Signature, Struct, UInt16, UInt32, UInt8, Variant, VarUInt, } from '../chain' import {Serializer} from '../serializer' @Struct.type('handshake_message') export class HandshakeMessage extends Struct { @Struct.field('uint16') declare networkVersion: UInt16 @Struct.field('checksum256') declare chainId: Checksum256 @Struct.field('checksum256') declare nodeId: Checksum256 @Struct.field('public_key') declare key: PublicKey @Struct.field('int64') declare time: Int64 @Struct.field('checksum256') declare token: Checksum256 @Struct.field('signature') declare sig: Signature @Struct.field('string') declare p2pAddress: string @Struct.field('uint32') declare lastIrreversibleBlockNumber: UInt32 @Struct.field(BlockId) declare lastIrreversibleBlockId: BlockId @Struct.field('uint32') declare headNum: UInt32 @Struct.field(BlockId) declare headId: BlockId @Struct.field('string') declare os: string @Struct.field('string') declare agent: string @Struct.field('int16') declare generation: Int16 } @Struct.type('chain_size_message') export class ChainSizeMessage extends Struct { @Struct.field('uint32') declare lastIrreversibleBlockNumber: UInt32 @Struct.field(BlockId) declare lastIrreversibleBlockId: BlockId @Struct.field('uint32') declare headNum: UInt32 @Struct.field(BlockId) declare headId: BlockId } @Struct.type('go_away_message') export class GoAwayMessage extends Struct { @Struct.field('uint8') declare reason: UInt8 @Struct.field('checksum256') declare nodeId: Checksum256 } @Struct.type('time_message') export class TimeMessage extends Struct { @Struct.field('int64') declare org: Int64 @Struct.field('int64') declare rec: Int64 @Struct.field('int64') declare xmt: Int64 @Struct.field('int64') declare dst: Int64 } @Struct.type('notice_message') export class NoticeMessage extends Struct { @Struct.field('checksum256', {array: true}) declare knownTrx: Checksum256[] @Struct.field(BlockId, {array: true}) declare knownBlocks: BlockId[] } @Struct.type('request_message') export class RequestMessage extends Struct { @Struct.field('checksum256', {array: true}) declare reqTrx: Checksum256[] @Struct.field(BlockId, {array: true}) declare reqBlocks: BlockId[] } @Struct.type('sync_request_message') export class SyncRequestMessage extends Struct { @Struct.field('uint32') declare startBlock: UInt32 @Struct.field('uint32') declare endBlock: UInt32 } @Struct.type('new_producers_entry') export class NewProducersEntry extends Struct { @Struct.field('name') declare producer_name: Name @Struct.field('public_key') declare block_signing_key: PublicKey } @Struct.type('new_producers') export class NewProducers extends Struct { @Struct.field('uint32') declare version: UInt32 @Struct.field(NewProducersEntry, {array: true}) declare producers: NewProducersEntry } @Struct.type('block_extension') export class BlockExtension extends Struct { @Struct.field('uint16') declare type: UInt16 @Struct.field('bytes') declare data: Bytes } @Struct.type('header_extension') export class HeaderExtension extends Struct { @Struct.field('uint16') declare type: UInt16 @Struct.field('bytes') declare data: Bytes } @Variant.type('trx_variant', [Checksum256, PackedTransaction]) class TrxVariant extends Variant { declare value: Checksum256 | PackedTransaction } @Struct.type('full_transaction_receipt') export class FullTransactionReceipt extends Struct { @Struct.field(UInt8) declare status: UInt8 @Struct.field(UInt32) declare cpu_usage_us: UInt32 @Struct.field(VarUInt) declare net_usage_words: VarUInt @Struct.field(TrxVariant) declare trx: TrxVariant } @Struct.type('block_header') export class BlockHeader extends Struct { @Struct.field('uint32') declare timeSlot: UInt32 @Struct.field('name') declare producer: Name @Struct.field('uint16') declare confirmed: UInt16 @Struct.field(BlockId) declare previous: BlockId @Struct.field(BlockId) declare transaction_mroot: BlockId @Struct.field(BlockId) declare action_mroot: BlockId @Struct.field('uint32') declare schedule_version: UInt32 @Struct.field(NewProducers, {optional: true}) new_producers?: NewProducers @Struct.field(HeaderExtension, {array: true}) declare header_extensions: HeaderExtension[] get blockNum(): UInt32 { return this.previous.blockNum.adding(1) } get id(): BlockId { const id = Checksum256.hash(Serializer.encode({object: this, type: BlockHeader})) return BlockId.fromBlockChecksum(id, this.blockNum) } } @Struct.type('signed_block') export class SignedBlock extends BlockHeader { @Struct.field('signature') declare producer_signature: Signature @Struct.field(FullTransactionReceipt, {array: true}) declare transactions: FullTransactionReceipt[] @Struct.field(BlockExtension, {array: true}) declare block_extensions: BlockExtension[] } @Variant.type('net_message', [ HandshakeMessage, ChainSizeMessage, GoAwayMessage, TimeMessage, NoticeMessage, RequestMessage, SyncRequestMessage, SignedBlock, PackedTransaction, ]) export class NetMessage extends Variant { declare value: | HandshakeMessage | ChainSizeMessage | GoAwayMessage | TimeMessage | NoticeMessage | RequestMessage | SyncRequestMessage | SignedBlock | PackedTransaction } |