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 | 68x 68x 68x | /**
* Unsigned 32-bit integer
*/
export enum ChainID {
Testnet = 0x80000000,
Mainnet = 0x00000001,
}
export const DEFAULT_CHAIN_ID = ChainID.Mainnet;
export enum TransactionVersion {
Mainnet = 0x00,
Testnet = 0x80,
}
|