Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/idle dao #662

Merged
merged 28 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
81ff604
NEW: created idle-dao dex
Mar 29, 2024
99e8d81
NEW: idle-dao
Apr 8, 2024
4f669dc
FIX: tests passed
Apr 29, 2024
eccd5b1
Merge branch 'master' into feat/BACK-1542
JackieJoo May 2, 2024
d96fbcd
FIX: idle-dao uopdate pools prices
May 22, 2024
71b8743
FIX: removed test-test
May 22, 2024
00dcae5
Merge remote-tracking branch 'idle/feature/idle-dao' into feat/BACK-1542
JackieJoo May 23, 2024
1fc21e6
Merge branch 'master' into feat/BACK-1542
JackieJoo May 23, 2024
872e627
FIX: fetch idle-dao pools from APIs
May 27, 2024
b46e368
Merge remote-tracking branch 'idle/feature/idle-dao' into feat/BACK-1542
JackieJoo May 29, 2024
89407c4
FIX: moved api key in .env
Jun 3, 2024
46dbd58
Merge remote-tracking branch 'idle/feature/idle-dao' into feat/BACK-1542
JackieJoo Jun 3, 2024
afdbce1
fix: cleaning
JackieJoo Jun 3, 2024
6b0e5de
fix: minor
JackieJoo Jun 3, 2024
bde9aaf
fix: merge
JackieJoo Jun 6, 2024
84e8bae
fix: v6 refactor
JackieJoo Jun 7, 2024
4db206b
FIX: cached token list
Jun 10, 2024
5a616a6
Merge pull request #698 from Idle-Labs/feature/idle-dao
JackieJoo Jun 10, 2024
b5b20b8
3.3.1-idle
JackieJoo Jun 11, 2024
b4512e0
fix: merge master
JackieJoo Jun 11, 2024
9b8c350
fix: minor
JackieJoo Jun 11, 2024
c8d6983
3.4.2-idle
JackieJoo Jun 11, 2024
5cca144
fix: merge master
JackieJoo Jun 20, 2024
a34bb33
Merge branch 'master' into feat/BACK-1542
JackieJoo Jun 20, 2024
46ea249
3.6.0-idle
JackieJoo Jun 20, 2024
83dcde6
fix: re-implement with rpc-based pricing for selected tokens
JackieJoo Jun 24, 2024
dee7292
fix: token list update & top pools
JackieJoo Jun 24, 2024
70063cd
FIX: tokens list fetching and caching
Jul 1, 2024
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@paraswap/dex-lib",
"version": "3.6.0",
"version": "3.6.0-idle",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/paraswap/paraswap-dex-lib",
Expand Down
38 changes: 38 additions & 0 deletions src/abi/idle-dao/idle-cdo-factory.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "proxy",
"type": "address"
}
],
"name": "CDODeployed",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "implementation",
"type": "address"
},
{
"internalType": "address",
"name": "admin",
"type": "address"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "deployCDO",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
Loading