@kyve/sdk
Version:
<p align="center"> <a href="https://kyve.network"> <img src="https://user-images.githubusercontent.com/62398724/137493477-63868209-a19b-4efa-9413-f06d41197d6d.png" style="border-radius: 50%" height="96"> </a> <h3 align="center"><code>@kyve/sdk</
22 lines (21 loc) • 780 B
TypeScript
import { ChainInfo } from "@keplr-wallet/types";
import { AddChainParams } from "@cosmostation/extension-client/types/message";
export declare const KYVE_DECIMALS = 9;
export declare const DENOM = "tkyve";
export declare const SUPPORTED_WALLETS: {
readonly KEPLER: "KEPLER";
readonly COSMOSTATION: "COSMOSTATION";
};
declare type Networks = Record<KYVE_NETWORK, Network>;
export declare const KYVE_ENDPOINTS: Networks;
export declare const PREFIX = "kyve";
export declare const KYVE_KEPLR_CONFIG: ChainInfo;
export declare const KYVE_COSMOSTATION_CONFIG: AddChainParams;
export declare type KYVE_NETWORK = "local" | "alpha" | "beta" | "korellia";
export declare type Network = {
rpc: string;
rest: string;
chainId: string;
chainName: string;
};
export {};