Skip to content

Commit

Permalink
fix: build script and artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
deluca-mike committed Nov 27, 2023
1 parent 58907b9 commit 72b7fe4
Show file tree
Hide file tree
Showing 23 changed files with 7,497 additions and 8 deletions.
467 changes: 467 additions & 0 deletions abi/ERC20PermitHarness.json

Large diffs are not rendered by default.

1,268 changes: 1,268 additions & 0 deletions abi/EmergencyGovernor.json

Large diffs are not rendered by default.

114 changes: 114 additions & 0 deletions abi/EmergencyGovernorDeployer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
[
{
"inputs": [
{
"internalType": "address",
"name": "registrar_",
"type": "address"
},
{
"internalType": "address",
"name": "zeroGovernor_",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "CallerIsNotRegistrar",
"type": "error"
},
{
"inputs": [],
"name": "InvalidRegistrarAddress",
"type": "error"
},
{
"inputs": [],
"name": "InvalidZeroGovernorAddress",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "voteToken_",
"type": "address"
},
{
"internalType": "address",
"name": "standardGovernor_",
"type": "address"
},
{
"internalType": "uint16",
"name": "thresholdRatio_",
"type": "uint16"
}
],
"name": "deploy",
"outputs": [
{
"internalType": "address",
"name": "deployed_",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getNextDeploy",
"outputs": [
{
"internalType": "address",
"name": "nextDeploy_",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "nonce",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "registrar",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "zeroGovernor",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
77 changes: 77 additions & 0 deletions abi/PowerBootstrapToken.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
[
{
"inputs": [
{
"internalType": "address[]",
"name": "initialAccounts_",
"type": "address[]"
},
{
"internalType": "uint256[]",
"name": "initialBalances_",
"type": "uint256[]"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "accountsLength",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "balancesLength",
"type": "uint256"
}
],
"name": "LengthMismatch",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account_",
"type": "address"
},
{
"internalType": "uint256",
"name": "epoch_",
"type": "uint256"
}
],
"name": "balanceOfAt",
"outputs": [
{
"internalType": "uint256",
"name": "balance_",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "epoch_",
"type": "uint256"
}
],
"name": "totalSupplyAt",
"outputs": [
{
"internalType": "uint256",
"name": "totalSupply_",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
Loading

0 comments on commit 72b7fe4

Please sign in to comment.