UNPKG

wttp-core

Version:

Core contracts, interfaces, and TypeScript types for the Web3 Transfer Protocol (WTTP).

41 lines 1.37 kB
/** * 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. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. */ /** * Web3 Transfer Protocol Gateway (WTTP Gateway) - Deployment Registry * * This file tracks all WTTP Gateway contract deployments across different networks. * Used for reference, integration, and deployment management. * * @version 0.1.0 * @license AGPL-3.0 */ type WttpDeployments = { chains: { [chainId: number]: { gateway: { contractAddress: string; deployerAddress: string; txHash: string; deployedAt: string; }; }; }; }; /** * WTTP Deployments - Simple Contract Registry * Tracks deployed contract addresses and deployment info across networks */ export declare const wttpDeployments: WttpDeployments; export default wttpDeployments; //# sourceMappingURL=wttp.deployments.d.ts.map