Skip to content

Commit

Permalink
chore: publish library version
Browse files Browse the repository at this point in the history
  • Loading branch information
halaprix committed Mar 20, 2024
1 parent 4c5e056 commit 848b784
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
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.49",
"version": "0.1.50",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/dma-library/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oasisdex/dma-library",
"version": "0.6.41",
"version": "0.6.42-proxy-migration.1",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"main": "lib/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/dma-library/src/operations/aave/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
paybackWithdraw as aaveV3PaybackWithdraw,
} from './borrow/v3/payback-withdraw'
// Migrate
import { AaveV3MigrateEOAOperation, migrateEOA as aaveV3MigrateEOA } from './migrate/migrate'
import { AaveV3MigrateOperation, migrate as aaveV3MigrateEOA } from './migrate/migrate'
// Multiply
import {
AaveV2AdjustDownOperation,
Expand Down Expand Up @@ -123,7 +123,7 @@ export type AaveMultiplyOperations = {

export type AaveMigrateOperations = {
v3: {
migrateEOA: AaveV3MigrateEOAOperation
migrateEOA: AaveV3MigrateOperation
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export async function migrateAaveStrategy(
positionType: 'Borrow',
sourceAddress: sourceAddress,
operationExecutor,
erc20ProxyActions: dependencies.erc20ProxyActions,
})

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export async function migrateSparkStrategy(
positionType: 'Borrow',
sourceAddress: sourceAddress,
operationExecutor,
erc20ProxyActions: dependencies.erc20ProxyActions,
})
return {
migration: {
Expand Down

0 comments on commit 848b784

Please sign in to comment.