mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
17 lines
524 B
TypeScript
17 lines
524 B
TypeScript
/**
|
|
* Returns the genesis state by network ID
|
|
* @param id ID of the network (e.g. 1)
|
|
* @returns Dictionary with genesis accounts
|
|
*
|
|
* @deprecated use {@link Common.genesisState} instead
|
|
*/
|
|
export declare function genesisStateById(id: number): any;
|
|
/**
|
|
* Returns the genesis state by network name
|
|
* @param name Name of the network (e.g. 'mainnet')
|
|
* @returns Dictionary with genesis accounts
|
|
*
|
|
* @deprecated use {@link Common.genesisState} instead
|
|
*/
|
|
export declare function genesisStateByName(name: string): any;
|