Skip to content

Commit

Permalink
Deployment artifact for ReimbursementPool on Polygon Mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
cygnusv committed Sep 11, 2024
1 parent 81e0591 commit b232c3c
Showing 1 changed file with 347 additions and 0 deletions.
347 changes: 347 additions & 0 deletions deployment/artifacts/reimbursement-mainnet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,347 @@
{
"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"
}
}
}

0 comments on commit b232c3c

Please sign in to comment.