wttp-core
Version:
Core contracts, interfaces, and TypeScript types for the Web3 Transfer Protocol (WTTP).
24 lines • 678 B
TypeScript
/**
* Copyright (C) 2025 TechnicallyWeb3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*/
export interface WttpChainConfig {
name?: string;
alias?: string;
symbol?: string;
explorer?: string;
gateway: string;
rpcsList: string[];
}
export interface WttpConfig {
defaultChain: number;
chains: {
[chainId: number]: WttpChainConfig;
};
}
export declare const config: WttpConfig;
//# sourceMappingURL=wttp.config.d.ts.map