@liquid-af/sdk 0.10.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/accounts/liquid-fees.d.ts +2 -0
- package/dist/accounts/liquid-fees.d.ts.map +1 -1
- package/dist/client.d.ts +2 -0
- package/dist/client.d.ts.map +1 -1
- package/dist/events/index.d.ts +1 -1
- package/dist/events/index.d.ts.map +1 -1
- package/dist/events/parser.d.ts +20 -2
- package/dist/events/parser.d.ts.map +1 -1
- package/dist/events/parser.js.map +1 -1
- package/dist/idl/liquid.d.ts +7 -3
- package/dist/idl/liquid.d.ts.map +1 -1
- package/dist/idl/liquid.json +7 -3
- package/dist/idl/liquid_events.d.ts +36 -18
- package/dist/idl/liquid_events.d.ts.map +1 -1
- package/dist/idl/liquid_events.json +36 -18
- package/dist/idl/liquid_fees.d.ts +5 -1
- package/dist/idl/liquid_fees.d.ts.map +1 -1
- package/dist/idl/liquid_fees.json +5 -1
- package/dist/idl/liquid_swap.d.ts +23 -1
- package/dist/idl/liquid_swap.d.ts.map +1 -1
- package/dist/idl/liquid_swap.json +29 -7
- package/dist/instructions/liquid-swap.js +2 -2
- package/dist/instructions/liquid-swap.js.map +1 -1
- package/package.json +1 -1
- package/src/events/index.ts +1 -1
- package/src/events/parser.ts +21 -10
- package/src/idl/liquid.json +7 -3
- package/src/idl/liquid.ts +7 -3
- package/src/idl/liquid_events.json +36 -18
- package/src/idl/liquid_events.ts +36 -18
- package/src/idl/liquid_fees.json +5 -1
- package/src/idl/liquid_fees.ts +5 -1
- package/src/idl/liquid_swap.json +29 -7
- package/src/idl/liquid_swap.ts +29 -7
- package/src/instructions/liquid-swap.ts +2 -2
|
@@ -422,7 +422,7 @@ export function buildDeposit(
|
|
|
422
422
|
|
|
423
423
|
return program.methods
|
|
424
424
|
.deposit(lpTokenAmount, maximumBaseAmount, maximumQuoteAmount)
|
|
425
|
-
.
|
|
425
|
+
.accountsPartial({
|
|
426
426
|
owner,
|
|
427
427
|
poolState: poolAddress,
|
|
428
428
|
ownerLpToken,
|
|
@@ -501,7 +501,7 @@ export function buildWithdraw(
|
|
|
501
501
|
|
|
502
502
|
return program.methods
|
|
503
503
|
.withdraw(lpTokenAmount, minimumBaseAmount, minimumQuoteAmount)
|
|
504
|
-
.
|
|
504
|
+
.accountsPartial({
|
|
505
505
|
owner,
|
|
506
506
|
poolState: poolAddress,
|
|
507
507
|
ownerLpToken,
|