UNPKG

744 BTypeScriptView Raw
1/// <reference types="node" />
2import BN from 'bn.js';
3/**
4 * The max integer that this VM can handle
5 */
6export declare const MAX_INTEGER: BN;
7/**
8 * 2^256
9 */
10export declare const TWO_POW256: BN;
11/**
12 * Keccak-256 hash of null
13 */
14export declare const KECCAK256_NULL_S: string;
15/**
16 * Keccak-256 hash of null
17 */
18export declare const KECCAK256_NULL: Buffer;
19/**
20 * Keccak-256 of an RLP of an empty array
21 */
22export declare const KECCAK256_RLP_ARRAY_S: string;
23/**
24 * Keccak-256 of an RLP of an empty array
25 */
26export declare const KECCAK256_RLP_ARRAY: Buffer;
27/**
28 * Keccak-256 hash of the RLP of null
29 */
30export declare const KECCAK256_RLP_S: string;
31/**
32 * Keccak-256 hash of the RLP of null
33 */
34export declare const KECCAK256_RLP: Buffer;