soulswap-rubik-sdk
Version:
Simplify dApp creation
8 lines (7 loc) • 398 B
TypeScript
import { Blockchain } from '@core/blockchain/models/blockchain';
import { BLOCKCHAIN_NAME } from '@core/blockchain/models/BLOCKCHAIN_NAME';
export declare class BlockchainsInfo {
static readonly blockchains: ReadonlyArray<Blockchain>;
static getBlockchainById(chainId: string | number): Blockchain | undefined;
static getBlockchainByName(blockchainName: BLOCKCHAIN_NAME): Blockchain;
}