-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployment artifact for ReimbursementPool on Polygon Mainnet
- Loading branch information
Showing
1 changed file
with
347 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} | ||
} |