UNPKG

wttp-core

Version:

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

40 lines 1.31 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. */ /** * WTTP Gateway - Deployment Registry * * This file tracks all WTTP Gateway contract deployments across different networks. * Used for reference, integration, and deployment management. * * @version 0.0.1 * @license AGPL-3.0 */ /** * WTTP Gateway Deployments - Simple Contract Registry * Tracks deployed gateway contract addresses and deployment info across networks */ export declare const wttpDeployments: { chains: { 11155111: { gateway: { contractAddress: string; deployerAddress: string; txHash: string; deployedAt: string; }; }; }; }; export default wttpDeployments; //# sourceMappingURL=wttp.deployments.d.ts.map