Skip to content

Commit

Permalink
Initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
lilchizh committed Jul 7, 2023
0 parents commit d4b95a9
Show file tree
Hide file tree
Showing 12 changed files with 7,619 additions and 0 deletions.
1,221 changes: 1,221 additions & 0 deletions abis/algebraEternalFarming.json

Large diffs are not rendered by default.

780 changes: 780 additions & 0 deletions abis/algebraFactory.json

Large diffs are not rendered by default.

1,092 changes: 1,092 additions & 0 deletions abis/algebraFarmingCenter.json

Large diffs are not rendered by default.

1,367 changes: 1,367 additions & 0 deletions abis/algebraNonfungiblePositionManager.json

Large diffs are not rendered by default.

1,067 changes: 1,067 additions & 0 deletions abis/algebraPool.json

Large diffs are not rendered by default.

226 changes: 226 additions & 0 deletions abis/algebraQuoter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,226 @@
[
{
"inputs": [
{
"internalType": "address",
"name": "_factory",
"type": "address"
},
{
"internalType": "address",
"name": "_WNativeToken",
"type": "address"
},
{
"internalType": "address",
"name": "_poolDeployer",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "WNativeToken",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "int256",
"name": "amount0Delta",
"type": "int256"
},
{
"internalType": "int256",
"name": "amount1Delta",
"type": "int256"
},
{
"internalType": "uint256",
"name": "feeAmount",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "path",
"type": "bytes"
}
],
"name": "algebraSwapCallback",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "factory",
"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": "bytes",
"name": "path",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
}
],
"name": "quoteExactInput",
"outputs": [
{
"internalType": "uint256",
"name": "amountOut",
"type": "uint256"
},
{
"internalType": "uint16[]",
"name": "fees",
"type": "uint16[]"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenIn",
"type": "address"
},
{
"internalType": "address",
"name": "tokenOut",
"type": "address"
},
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
},
{
"internalType": "uint160",
"name": "limitSqrtPrice",
"type": "uint160"
}
],
"name": "quoteExactInputSingle",
"outputs": [
{
"internalType": "uint256",
"name": "amountOut",
"type": "uint256"
},
{
"internalType": "uint16",
"name": "fee",
"type": "uint16"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "path",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "amountOut",
"type": "uint256"
}
],
"name": "quoteExactOutput",
"outputs": [
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
},
{
"internalType": "uint16[]",
"name": "fees",
"type": "uint16[]"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "tokenIn",
"type": "address"
},
{
"internalType": "address",
"name": "tokenOut",
"type": "address"
},
{
"internalType": "uint256",
"name": "amountOut",
"type": "uint256"
},
{
"internalType": "uint160",
"name": "limitSqrtPrice",
"type": "uint160"
}
],
"name": "quoteExactOutputSingle",
"outputs": [
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
},
{
"internalType": "uint16",
"name": "fee",
"type": "uint16"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
Loading

0 comments on commit d4b95a9

Please sign in to comment.