@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
22 lines • 580 B
TypeScript
export interface WalletConnectSignatureType {
id?: number;
jsonrpc?: string;
signature: string;
}
export interface RouteType {
path: string;
component: any;
authenticatedRoute?: boolean;
}
export interface TokenLoginType {
loginToken: string;
signature?: string;
}
export * from './transactions.types';
export * from './serverTransactions.types';
export * from './enums.types';
export * from './account.types';
export * from './network.types';
export * from './dappProvider.types';
export * from './login.types';
//# sourceMappingURL=index.d.ts.map