@venly/web3-provider
Version:
Venly enabled Web3 Provider for the web
23 lines (22 loc) • 514 B
TypeScript
export declare const CHAIN_IDS: {
[secretType: string]: {
production: string;
sandbox: string;
staging: string;
qa: string;
};
};
export declare const CHAIN_CONFIGS: {
[chainId: number]: {
env: string;
secretType: string;
};
};
export declare const REQUEST_TYPES: {
[secretType: string]: {
transaction: string;
signature: string;
};
};
export type BlockData = string | string[];
export type Block = Record<string, BlockData>;