@make-software/csprclick-core-types
Version:
Typescript definitions for CSPR.click core packages
34 lines (33 loc) • 904 B
TypeScript
export * from './account';
export * from './actions';
export * from './customjwt';
export * from './events';
export * from './ledger';
export * from './messages';
export * from './metamask';
export * from './rpc';
export * from './settings';
export * from './torus';
export * from './walletconnect';
export * from './wallets';
export * from './w3agoogle';
export * from './icore';
export declare const CHAIN_NAME: {
MAINNET: string;
TESTNET: string;
};
export type CONTENT_MODE = string;
export declare const CONTENT_MODE: {
readonly POPUP: "popup";
readonly IFRAME: "iframe";
};
export type TransactionStatus = string;
export declare const TransactionStatus: {
readonly SENT: "sent";
readonly PING: "ping";
readonly PROCESSED: "processed";
readonly CANCELLED: "cancelled";
readonly TIMEOUT: "timeout";
readonly EXPIRED: "expired";
readonly ERROR: "error";
};