@vechain/connex
Version:
Standard interface to connect DApp with VeChain and user
39 lines (38 loc) • 917 B
TypeScript
export declare const genesisBlocks: {
main: {
number: number;
id: string;
size: number;
parentID: string;
timestamp: number;
gasLimit: number;
beneficiary: string;
gasUsed: number;
totalScore: number;
txsRoot: string;
txsFeatures: number;
stateRoot: string;
receiptsRoot: string;
signer: string;
isTrunk: boolean;
transactions: never[];
};
test: {
number: number;
id: string;
size: number;
parentID: string;
timestamp: number;
gasLimit: number;
beneficiary: string;
gasUsed: number;
totalScore: number;
txsRoot: string;
txsFeatures: number;
stateRoot: string;
receiptsRoot: string;
signer: string;
isTrunk: boolean;
transactions: never[];
};
};