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

🚀 deploy: on Base and add new Ops #22

Merged
merged 37 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
5952c56
deploy: on Base and add new Ops
zerotucks Feb 28, 2024
6636b08
style: update deploy property value to false
zerotucks Feb 28, 2024
c0edff3
Merge branch 'jt/sc-14516/sc-spark-add-missing-operations-and-strateg…
zerotucks Feb 28, 2024
0da7250
feat: Add Aave borrow withdraw strategy
zerotucks Feb 28, 2024
c773556
feat: Add Aave V3 withdraw function and dependencies
zerotucks Feb 28, 2024
b65e836
refactor: Simplify withdraw function and handle different scenarios e…
zerotucks Feb 28, 2024
fe20208
feat: Update Aave withdrawal operations to use 'auto' namespace
zerotucks Feb 28, 2024
aa86bf1
feat: Update contract and operation names with version numbers
zerotucks Feb 28, 2024
2cb94f8
Merge branch 'jt/sc-14561/sc-deploy-collectfee-action-add-new-ops-to'…
zerotucks Feb 28, 2024
86821b3
refactor: Update withdraw calculation with PositionBalance
zerotucks Feb 29, 2024
a02dcde
v0.5.21-dma-v2-workers.21-auto-withdraw-to-ltv
zerotucks Feb 29, 2024
b6be287
fix: Update transfer function to safeTransfer
zerotucks Feb 29, 2024
eb6c0f5
fix: Update CollectFee address and history addresses
zerotucks Feb 29, 2024
3099d83
Merge branch 'jt/sc-14561/sc-deploy-collectfee-action-add-new-ops-to'…
zerotucks Feb 29, 2024
69d3b2b
chore: bump version
zerotucks Feb 29, 2024
32b6a5b
refactor: Update import statements and remove unnecessary code
zerotucks Feb 29, 2024
4c2cfcd
Merge branch 'jt/sc-14561/sc-deploy-collectfee-action-add-new-ops-to'…
zerotucks Feb 29, 2024
2bd3341
refactor: Update swap amount calculation with fees
zerotucks Feb 29, 2024
1428986
v0.5.21-dma-v2-workers.23-auto-withdraw-to-ltv
zerotucks Feb 29, 2024
c77ca9f
v0.5.21-dma-v2-workers.24-auto-withdraw-to-ltv
zerotucks Feb 29, 2024
b946652
fix: Update service registry name for SWAP in withdraw-to-debt op
zerotucks Feb 29, 2024
b602c4c
v0.5.21-dma-v2-workers.25-auto-withdraw-to-ltv
zerotucks Feb 29, 2024
07bedde
refactor: Update return type to use a named type
zerotucks Mar 1, 2024
2857e41
refactor: Rename spark/borrow to spark/auto
zerotucks Mar 1, 2024
7640124
feat: Add withdrawToLTV strategy in Spark auto module
zerotucks Mar 1, 2024
185dc44
refactor: Update operation names for withdraw and withdraw to debt
zerotucks Mar 1, 2024
7173a77
chore: fix `WETH/ETH` issue
halaprix Mar 7, 2024
76c3080
Merge pull request #25 from OasisDEX/kk/sc-14667/bug-profit-to-collat…
halaprix Mar 7, 2024
03c45aa
Merge pull request #23 from OasisDEX:jt/sc-14562/lib-create-strategie…
halaprix Mar 8, 2024
b790bb9
chore: dploy arbitrum and optimism
halaprix Mar 8, 2024
1863373
chore: update ETH to `0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE`
halaprix Mar 11, 2024
cddc445
chore: fix weth eth again
halaprix Mar 11, 2024
2f3d2ad
Merge branch 'dev' into jt/sc-14561/sc-deploy-collectfee-action-add-n…
halaprix Mar 11, 2024
c6a81fe
fix: fix eth weth
halaprix Mar 11, 2024
15d4842
chore: bump
halaprix Mar 11, 2024
e29f3df
Merge pull request #26 from OasisDEX:kk/eth-weth-fix-2
halaprix Mar 12, 2024
95a91ed
chore: prettier
halaprix Mar 12, 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 packages/addresses/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oasisdex/addresses",
"version": "0.1.16-dma-v2-workers.11",
"version": "0.1.17-automation",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"main": "lib/index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/deploy-configurations/configs/arbitrum.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ export const config: SystemConfig = {
},
CollectFee: {
name: 'CollectFee',
deploy: false,
address: '',
deploy: true,
address: '0xA15e4A1087BA16f6bdb2be5f840D1d98BC3e6C70',
serviceRegistryName: SERVICE_REGISTRY_NAMES.common.COLLECT_FEE,
history: [],
constructorArgs: [
Expand Down Expand Up @@ -400,7 +400,7 @@ export const config: SystemConfig = {
},
ETH: {
name: 'ETH',
address: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
address: '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE',
},
FRAX: {
name: 'FRAX',
Expand Down
Loading
Loading