From f7062913b86c47d8f9d298509e2abf34b099edd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=BA=C3=B1ez?= Date: Mon, 16 Sep 2024 12:16:37 +0200 Subject: [PATCH] Merge deployment info into mainnet registry --- deployment/artifacts/mainnet.json | 343 +++++++++++++++++ .../artifacts/reimbursement-mainnet.json | 347 ------------------ 2 files changed, 343 insertions(+), 347 deletions(-) delete mode 100644 deployment/artifacts/reimbursement-mainnet.json diff --git a/deployment/artifacts/mainnet.json b/deployment/artifacts/mainnet.json index da5cfafa..bb622619 100644 --- a/deployment/artifacts/mainnet.json +++ b/deployment/artifacts/mainnet.json @@ -4946,6 +4946,349 @@ "block_number": 50816123, "deployer": "0x1591165F1BF8B73de7053A6BE6f239BC15076879" }, + "ReimbursementPool": { + "address": "0x65849eaDc5cE348EaA131Fdbd35aeC9235688EEB", + "abi": [ + { + "type": "constructor", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "_staticGas", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "_maxGasPrice", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "error", + "name": "OwnableInvalidOwner", + "inputs": [ + { + "name": "owner", + "type": "address", + "internalType": "address" + } + ] + }, + { + "type": "error", + "name": "OwnableUnauthorizedAccount", + "inputs": [ + { + "name": "account", + "type": "address", + "internalType": "address" + } + ] + }, + { + "type": "error", + "name": "ReentrancyGuardReentrantCall", + "inputs": [] + }, + { + "type": "event", + "name": "AuthorizedContract", + "inputs": [ + { + "name": "thirdPartyContract", + "type": "address", + "internalType": "address", + "indexed": false + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "FundsWithdrawn", + "inputs": [ + { + "name": "withdrawnAmount", + "type": "uint256", + "internalType": "uint256", + "indexed": false + }, + { + "name": "receiver", + "type": "address", + "internalType": "address", + "indexed": false + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "MaxGasPriceUpdated", + "inputs": [ + { + "name": "newMaxGasPrice", + "type": "uint256", + "internalType": "uint256", + "indexed": false + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "OwnershipTransferred", + "inputs": [ + { + "name": "previousOwner", + "type": "address", + "internalType": "address", + "indexed": true + }, + { + "name": "newOwner", + "type": "address", + "internalType": "address", + "indexed": true + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "SendingEtherFailed", + "inputs": [ + { + "name": "refundAmount", + "type": "uint256", + "internalType": "uint256", + "indexed": false + }, + { + "name": "receiver", + "type": "address", + "internalType": "address", + "indexed": false + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "StaticGasUpdated", + "inputs": [ + { + "name": "newStaticGas", + "type": "uint256", + "internalType": "uint256", + "indexed": false + } + ], + "anonymous": false + }, + { + "type": "event", + "name": "UnauthorizedContract", + "inputs": [ + { + "name": "thirdPartyContract", + "type": "address", + "internalType": "address", + "indexed": false + } + ], + "anonymous": false + }, + { + "type": "function", + "name": "authorize", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "_contract", + "type": "address", + "internalType": "address" + } + ], + "outputs": [] + }, + { + "type": "function", + "name": "isAuthorized", + "stateMutability": "view", + "inputs": [ + { + "name": "", + "type": "address", + "internalType": "address" + } + ], + "outputs": [ + { + "name": "", + "type": "bool", + "internalType": "bool" + } + ] + }, + { + "type": "function", + "name": "maxGasPrice", + "stateMutability": "view", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "function", + "name": "owner", + "stateMutability": "view", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "address", + "internalType": "address" + } + ] + }, + { + "type": "function", + "name": "refund", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "gasSpent", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "receiver", + "type": "address", + "internalType": "address" + } + ], + "outputs": [] + }, + { + "type": "function", + "name": "renounceOwnership", + "stateMutability": "nonpayable", + "inputs": [], + "outputs": [] + }, + { + "type": "function", + "name": "setMaxGasPrice", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "_maxGasPrice", + "type": "uint256", + "internalType": "uint256" + } + ], + "outputs": [] + }, + { + "type": "function", + "name": "setStaticGas", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "_staticGas", + "type": "uint256", + "internalType": "uint256" + } + ], + "outputs": [] + }, + { + "type": "function", + "name": "staticGas", + "stateMutability": "view", + "inputs": [], + "outputs": [ + { + "name": "", + "type": "uint256", + "internalType": "uint256" + } + ] + }, + { + "type": "function", + "name": "transferOwnership", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "newOwner", + "type": "address", + "internalType": "address" + } + ], + "outputs": [] + }, + { + "type": "function", + "name": "unauthorize", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "_contract", + "type": "address", + "internalType": "address" + } + ], + "outputs": [] + }, + { + "type": "function", + "name": "withdraw", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "amount", + "type": "uint256", + "internalType": "uint256" + }, + { + "name": "receiver", + "type": "address", + "internalType": "address" + } + ], + "outputs": [] + }, + { + "type": "function", + "name": "withdrawAll", + "stateMutability": "nonpayable", + "inputs": [ + { + "name": "receiver", + "type": "address", + "internalType": "address" + } + ], + "outputs": [] + }, + { + "type": "receive", + "stateMutability": "payable" + } + ], + "tx_hash": "0x0d7daede5ac88a093b3da7d0428c5753e01a04d7ab9f8c9533d1893c1682d776", + "block_number": 61687846, + "deployer": "0x1591165F1BF8B73de7053A6BE6f239BC15076879" + }, "SubscriptionManager": { "address": "0xB0194073421192F6Cf38d72c791Be8729721A0b3", "abi": [ diff --git a/deployment/artifacts/reimbursement-mainnet.json b/deployment/artifacts/reimbursement-mainnet.json deleted file mode 100644 index 2a01ff60..00000000 --- a/deployment/artifacts/reimbursement-mainnet.json +++ /dev/null @@ -1,347 +0,0 @@ -{ - "137": { - "ReimbursementPool": { - "address": "0x65849eaDc5cE348EaA131Fdbd35aeC9235688EEB", - "abi": [ - { - "type": "constructor", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "_staticGas", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "_maxGasPrice", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "error", - "name": "OwnableInvalidOwner", - "inputs": [ - { - "name": "owner", - "type": "address", - "internalType": "address" - } - ] - }, - { - "type": "error", - "name": "OwnableUnauthorizedAccount", - "inputs": [ - { - "name": "account", - "type": "address", - "internalType": "address" - } - ] - }, - { - "type": "error", - "name": "ReentrancyGuardReentrantCall", - "inputs": [] - }, - { - "type": "event", - "name": "AuthorizedContract", - "inputs": [ - { - "name": "thirdPartyContract", - "type": "address", - "internalType": "address", - "indexed": false - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "FundsWithdrawn", - "inputs": [ - { - "name": "withdrawnAmount", - "type": "uint256", - "internalType": "uint256", - "indexed": false - }, - { - "name": "receiver", - "type": "address", - "internalType": "address", - "indexed": false - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "MaxGasPriceUpdated", - "inputs": [ - { - "name": "newMaxGasPrice", - "type": "uint256", - "internalType": "uint256", - "indexed": false - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "OwnershipTransferred", - "inputs": [ - { - "name": "previousOwner", - "type": "address", - "internalType": "address", - "indexed": true - }, - { - "name": "newOwner", - "type": "address", - "internalType": "address", - "indexed": true - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "SendingEtherFailed", - "inputs": [ - { - "name": "refundAmount", - "type": "uint256", - "internalType": "uint256", - "indexed": false - }, - { - "name": "receiver", - "type": "address", - "internalType": "address", - "indexed": false - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "StaticGasUpdated", - "inputs": [ - { - "name": "newStaticGas", - "type": "uint256", - "internalType": "uint256", - "indexed": false - } - ], - "anonymous": false - }, - { - "type": "event", - "name": "UnauthorizedContract", - "inputs": [ - { - "name": "thirdPartyContract", - "type": "address", - "internalType": "address", - "indexed": false - } - ], - "anonymous": false - }, - { - "type": "function", - "name": "authorize", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "_contract", - "type": "address", - "internalType": "address" - } - ], - "outputs": [] - }, - { - "type": "function", - "name": "isAuthorized", - "stateMutability": "view", - "inputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ], - "outputs": [ - { - "name": "", - "type": "bool", - "internalType": "bool" - } - ] - }, - { - "type": "function", - "name": "maxGasPrice", - "stateMutability": "view", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "function", - "name": "owner", - "stateMutability": "view", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "address", - "internalType": "address" - } - ] - }, - { - "type": "function", - "name": "refund", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "gasSpent", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "receiver", - "type": "address", - "internalType": "address" - } - ], - "outputs": [] - }, - { - "type": "function", - "name": "renounceOwnership", - "stateMutability": "nonpayable", - "inputs": [], - "outputs": [] - }, - { - "type": "function", - "name": "setMaxGasPrice", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "_maxGasPrice", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [] - }, - { - "type": "function", - "name": "setStaticGas", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "_staticGas", - "type": "uint256", - "internalType": "uint256" - } - ], - "outputs": [] - }, - { - "type": "function", - "name": "staticGas", - "stateMutability": "view", - "inputs": [], - "outputs": [ - { - "name": "", - "type": "uint256", - "internalType": "uint256" - } - ] - }, - { - "type": "function", - "name": "transferOwnership", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "newOwner", - "type": "address", - "internalType": "address" - } - ], - "outputs": [] - }, - { - "type": "function", - "name": "unauthorize", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "_contract", - "type": "address", - "internalType": "address" - } - ], - "outputs": [] - }, - { - "type": "function", - "name": "withdraw", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "amount", - "type": "uint256", - "internalType": "uint256" - }, - { - "name": "receiver", - "type": "address", - "internalType": "address" - } - ], - "outputs": [] - }, - { - "type": "function", - "name": "withdrawAll", - "stateMutability": "nonpayable", - "inputs": [ - { - "name": "receiver", - "type": "address", - "internalType": "address" - } - ], - "outputs": [] - }, - { - "type": "receive", - "stateMutability": "payable" - } - ], - "tx_hash": "0x0d7daede5ac88a093b3da7d0428c5753e01a04d7ab9f8c9533d1893c1682d776", - "block_number": 61687846, - "deployer": "0x1591165F1BF8B73de7053A6BE6f239BC15076879" - } - } -} \ No newline at end of file