-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
1,449 additions
and
1 deletion.
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,388 @@ | ||
[ | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "_poolDeployer", | ||
"type": "address" | ||
}, | ||
{ | ||
"internalType": "address", | ||
"name": "_vaultAddress", | ||
"type": "address" | ||
} | ||
], | ||
"stateMutability": "nonpayable", | ||
"type": "constructor" | ||
}, | ||
{ | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "newFarmingAddress", | ||
"type": "address" | ||
} | ||
], | ||
"name": "FarmingAddress", | ||
"type": "event" | ||
}, | ||
{ | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": false, | ||
"internalType": "uint16", | ||
"name": "alpha1", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint16", | ||
"name": "alpha2", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint32", | ||
"name": "beta1", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint32", | ||
"name": "beta2", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint16", | ||
"name": "gamma1", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint16", | ||
"name": "gamma2", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint32", | ||
"name": "volumeBeta", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint16", | ||
"name": "volumeGamma", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "uint16", | ||
"name": "baseFee", | ||
"type": "uint16" | ||
} | ||
], | ||
"name": "FeeConfiguration", | ||
"type": "event" | ||
}, | ||
{ | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "newOwner", | ||
"type": "address" | ||
} | ||
], | ||
"name": "Owner", | ||
"type": "event" | ||
}, | ||
{ | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "token0", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "token1", | ||
"type": "address" | ||
}, | ||
{ | ||
"indexed": false, | ||
"internalType": "address", | ||
"name": "pool", | ||
"type": "address" | ||
} | ||
], | ||
"name": "Pool", | ||
"type": "event" | ||
}, | ||
{ | ||
"anonymous": false, | ||
"inputs": [ | ||
{ | ||
"indexed": true, | ||
"internalType": "address", | ||
"name": "newVaultAddress", | ||
"type": "address" | ||
} | ||
], | ||
"name": "VaultAddress", | ||
"type": "event" | ||
}, | ||
{ | ||
"inputs": [], | ||
"name": "baseFeeConfiguration", | ||
"outputs": [ | ||
{ | ||
"internalType": "uint16", | ||
"name": "alpha1", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "alpha2", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint32", | ||
"name": "beta1", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"internalType": "uint32", | ||
"name": "beta2", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "gamma1", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "gamma2", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint32", | ||
"name": "volumeBeta", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "volumeGamma", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "baseFee", | ||
"type": "uint16" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "tokenA", | ||
"type": "address" | ||
}, | ||
{ | ||
"internalType": "address", | ||
"name": "tokenB", | ||
"type": "address" | ||
} | ||
], | ||
"name": "createPool", | ||
"outputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "pool", | ||
"type": "address" | ||
} | ||
], | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [], | ||
"name": "farmingAddress", | ||
"outputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "", | ||
"type": "address" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [], | ||
"name": "owner", | ||
"outputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "", | ||
"type": "address" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "", | ||
"type": "address" | ||
}, | ||
{ | ||
"internalType": "address", | ||
"name": "", | ||
"type": "address" | ||
} | ||
], | ||
"name": "poolByPair", | ||
"outputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "", | ||
"type": "address" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [], | ||
"name": "poolDeployer", | ||
"outputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "", | ||
"type": "address" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "uint16", | ||
"name": "alpha1", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "alpha2", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint32", | ||
"name": "beta1", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"internalType": "uint32", | ||
"name": "beta2", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "gamma1", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "gamma2", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint32", | ||
"name": "volumeBeta", | ||
"type": "uint32" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "volumeGamma", | ||
"type": "uint16" | ||
}, | ||
{ | ||
"internalType": "uint16", | ||
"name": "baseFee", | ||
"type": "uint16" | ||
} | ||
], | ||
"name": "setBaseFeeConfiguration", | ||
"outputs": [], | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "_farmingAddress", | ||
"type": "address" | ||
} | ||
], | ||
"name": "setFarmingAddress", | ||
"outputs": [], | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "_owner", | ||
"type": "address" | ||
} | ||
], | ||
"name": "setOwner", | ||
"outputs": [], | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "_vaultAddress", | ||
"type": "address" | ||
} | ||
], | ||
"name": "setVaultAddress", | ||
"outputs": [], | ||
"stateMutability": "nonpayable", | ||
"type": "function" | ||
}, | ||
{ | ||
"inputs": [], | ||
"name": "vaultAddress", | ||
"outputs": [ | ||
{ | ||
"internalType": "address", | ||
"name": "", | ||
"type": "address" | ||
} | ||
], | ||
"stateMutability": "view", | ||
"type": "function" | ||
} | ||
] |
Oops, something went wrong.