Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

feat(llama-airforce): Extract Llama Airforce and re-enable airdrop balances #531

Merged
merged 1 commit into from
May 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,272 @@
[
{
"inputs": [
{ "internalType": "address", "name": "_vault", "type": "address" },
{ "internalType": "address", "name": "_depositor", "type": "address" }
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "internalType": "address", "name": "oldAdmin", "type": "address" },
{ "indexed": true, "internalType": "address", "name": "newAdmin", "type": "address" }
],
"name": "AdminUpdated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": false, "internalType": "uint256", "name": "index", "type": "uint256" },
{ "indexed": true, "internalType": "uint256", "name": "amount", "type": "uint256" },
{ "indexed": true, "internalType": "address", "name": "account", "type": "address" },
{ "indexed": false, "internalType": "uint256", "name": "week", "type": "uint256" }
],
"name": "Claimed",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "internalType": "address", "name": "oldDepositor", "type": "address" },
{ "indexed": true, "internalType": "address", "name": "newDepositor", "type": "address" }
],
"name": "DepositorUpdated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "internalType": "bytes32", "name": "merkleRoot", "type": "bytes32" },
{ "indexed": true, "internalType": "uint32", "name": "week", "type": "uint32" }
],
"name": "MerkleRootUpdated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "internalType": "address", "name": "oldVault", "type": "address" },
{ "indexed": true, "internalType": "address", "name": "newVault", "type": "address" }
],
"name": "VaultUpdated",
"type": "event"
},
{
"inputs": [],
"name": "CRVETH_CRV_INDEX",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CRVETH_ETH_INDEX",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CRV_TOKEN",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CURVE_CRV_ETH_POOL",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CURVE_CVXCRV_CRV_POOL",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CURVE_CVX_ETH_POOL",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CVXCRV_CRV_INDEX",
"outputs": [{ "internalType": "int128", "name": "", "type": "int128" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CVXCRV_CVXCRV_INDEX",
"outputs": [{ "internalType": "int128", "name": "", "type": "int128" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CVXCRV_STAKING_CONTRACT",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CVXCRV_TOKEN",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CVXETH_CVX_INDEX",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CVXETH_ETH_INDEX",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "CVX_TOKEN",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "admin",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{ "internalType": "uint256", "name": "index", "type": "uint256" },
{ "internalType": "address", "name": "account", "type": "address" },
{ "internalType": "uint256", "name": "amount", "type": "uint256" },
{ "internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]" }
],
"name": "claim",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{ "internalType": "uint256", "name": "index", "type": "uint256" },
{ "internalType": "address", "name": "account", "type": "address" },
{ "internalType": "uint256", "name": "amount", "type": "uint256" },
{ "internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]" },
{ "internalType": "enum ClaimZaps.Option", "name": "option", "type": "uint8" }
],
"name": "claimAs",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{ "internalType": "uint256", "name": "index", "type": "uint256" },
{ "internalType": "address", "name": "account", "type": "address" },
{ "internalType": "uint256", "name": "amount", "type": "uint256" },
{ "internalType": "bytes32[]", "name": "merkleProof", "type": "bytes32[]" },
{ "internalType": "enum ClaimZaps.Option", "name": "option", "type": "uint8" },
{ "internalType": "uint256", "name": "minAmountOut", "type": "uint256" }
],
"name": "claimAs",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "depositor",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{ "inputs": [], "name": "freeze", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
{
"inputs": [],
"name": "frozen",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [{ "internalType": "uint256", "name": "index", "type": "uint256" }],
"name": "isClaimed",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "merkleRoot",
"outputs": [{ "internalType": "bytes32", "name": "", "type": "bytes32" }],
"stateMutability": "view",
"type": "function"
},
{ "inputs": [], "name": "setApprovals", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
{ "inputs": [], "name": "stake", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
{ "inputs": [], "name": "unfreeze", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
{
"inputs": [{ "internalType": "address", "name": "newAdmin", "type": "address" }],
"name": "updateAdmin",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{ "internalType": "address", "name": "newDepositor", "type": "address" }],
"name": "updateDepositor",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{ "internalType": "bytes32", "name": "_merkleRoot", "type": "bytes32" },
{ "internalType": "bool", "name": "_unfreeze", "type": "bool" }
],
"name": "updateMerkleRoot",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [{ "internalType": "address", "name": "newVault", "type": "address" }],
"name": "updateVault",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "vault",
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "week",
"outputs": [{ "internalType": "uint32", "name": "", "type": "uint32" }],
"stateMutability": "view",
"type": "function"
},
{ "stateMutability": "payable", "type": "receive" }
]
Loading