Skip to content

Commit

Permalink
chore - update bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Dvisacker committed Dec 3, 2024
1 parent 54fd944 commit 3091553
Show file tree
Hide file tree
Showing 10 changed files with 31,176 additions and 9 deletions.
5 changes: 3 additions & 2 deletions contracts/src/IAerodromeCLPool.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pragma solidity ^0.8.4;
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface CLPool {
interface IAerodromeCLPool {
event Burn(
address indexed owner,
int24 indexed tickLower,
Expand Down
5 changes: 3 additions & 2 deletions contracts/src/IAerodromePool.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pragma solidity ^0.8.4;
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library IPool {
struct Observation {
Expand All @@ -8,7 +9,7 @@ library IPool {
}
}

interface Pool {
interface IAerodromePool {
error BelowMinimumK();
error DepositsNotEqual();
error FactoryAlreadySet();
Expand Down
5 changes: 4 additions & 1 deletion contracts/src/ICurvePool.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
interface Vyper_contract {
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface ICurvePool {
event AddLiquidity(
address indexed provider, uint256[2] token_amounts, uint256[2] fees, uint256 invariant, uint256 token_supply
);
Expand Down
5 changes: 3 additions & 2 deletions contracts/src/IUniswapV2Pool.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pragma solidity ^0.8.4;
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface UniswapV2Pair {
interface IUniswapV2Pool {
event Approval(address indexed owner, address indexed spender, uint256 value);
event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to);
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
Expand Down
5 changes: 3 additions & 2 deletions contracts/src/IUniswapV3Pool.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pragma solidity ^0.8.4;
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface UniswapV3Pool {
interface IUniswapV3Pool {
event Burn(
address indexed owner,
int24 indexed tickLower,
Expand Down
Loading

0 comments on commit 3091553

Please sign in to comment.