UNPKG

ethereum-storage

Version:

Storage protocol built on ethereum using datapoint archetecture and a registry contract for handling royalties.

60 lines 2.54 kB
"use strict"; /** * Ethereum Storage Protocol (ESP) - Deployment Registry * * This file tracks all ESP contract deployments across different networks. * Used for reference, integration, and deployment management. * * @version 0.2.0 * @license AGPL-3.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.espDeployments = void 0; /** * ESP Deployments - Simple Contract Registry * Tracks deployed contract addresses and deployment info across networks */ exports.espDeployments = { chains: { 11155111: { dps: { contractAddress: '0xDA7Adb41ac559e689fE170aE4f2853a450e6E4Cc', deployerAddress: '0x02040ee763D6d849515cE194bDa93d12bf3c45d0', txHash: '0x4b953bc3f64a799306ba4d785c0796d8e9134ad830866285cc7819406f062c6a', deployedAt: '2025-06-18T04:18:00.000Z' }, dpr: { contractAddress: '0xDA7Ae59Fa1DB9B138dddaaFB6153B11B162Cfd8B', deployerAddress: '0x02040ee763D6d849515cE194bDa93d12bf3c45d0', txHash: '0x7dde4ce8ba920276fe06c786625d0a83e843c19783102b9fad4145607e8d3a7f', deployedAt: '2025-06-18T04:18:00.000Z', constructors: { ownerAddress: '0xDA00006427E534B1Acde93B9E66d8A9d2C66B2d3', dpsAddress: '0xDA7Adb41ac559e689fE170aE4f2853a450e6E4Cc', royaltyRate: '1079' } } }, 137: { dps: { contractAddress: '0xDA7Adb41ac559e689fE170aE4f2853a450e6E4Cc', deployerAddress: '0x02040ee763D6d849515cE194bDa93d12bf3c45d0', txHash: '0x4097aef6cfcf28bbea4dd8c6458a565fde2246b7497138c9a9227f59a1199fe1', deployedAt: '2025-06-27T02:48:11.873Z' }, dpr: { contractAddress: '0xDA7Ae59Fa1DB9B138dddaaFB6153B11B162Cfd8B', deployerAddress: '0xBaD80207d4282ECb94bEb3bCCbBFa697B49e66aa', txHash: '0x542eba29d7f45092a0a8909a0f15bbe40d18dc36acb3812713024190883b93b4', deployedAt: '2025-06-27T02:48:11.873Z', constructors: { ownerAddress: '0x352EBC51417C9511ce884547994b3eD6DcD2DbAE', dpsAddress: '0xDA7Adb41ac559e689fE170aE4f2853a450e6E4Cc', royaltyRate: '25000000' } } } } }; exports.default = exports.espDeployments; //# sourceMappingURL=esp.deployments.js.map