@pendle/sdk-boros 0.3.9 → 0.3.11
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/contracts/viemAbis.d.ts +4 -0
- package/dist/contracts/viemAbis.js +1 -0
- package/dist/contracts/viemAbis.js.map +1 -1
- package/dist/entities/exchange/exchange.js +7 -6
- package/dist/entities/exchange/exchange.js.map +1 -1
- package/dist/entities/exchange/types.d.ts +5 -12
- package/dist/errors/PendleContractError/customHandler.js +6 -2
- package/dist/errors/PendleContractError/customHandler.js.map +1 -1
- package/dist/types/encoders.d.ts +1 -0
- package/dist/types/encoders.js.map +1 -1
- package/package.json +2 -2
|
@@ -3424,6 +3424,10 @@ export declare const iRouterAbi: readonly [{
|
|
|
3424
3424
|
readonly internalType: "AMMId";
|
|
3425
3425
|
readonly name: "ammId";
|
|
3426
3426
|
readonly type: "uint24";
|
|
3427
|
+
}, {
|
|
3428
|
+
readonly internalType: "bool";
|
|
3429
|
+
readonly name: "enterMarket";
|
|
3430
|
+
readonly type: "bool";
|
|
3427
3431
|
}, {
|
|
3428
3432
|
readonly internalType: "int256";
|
|
3429
3433
|
readonly name: "netCashIn";
|
|
@@ -1943,6 +1943,7 @@ exports.iRouterAbi = [
|
|
|
1943
1943
|
components: [
|
|
1944
1944
|
{ internalType: 'bool', name: 'cross', type: 'bool' },
|
|
1945
1945
|
{ internalType: 'AMMId', name: 'ammId', type: 'uint24' },
|
|
1946
|
+
{ internalType: 'bool', name: 'enterMarket', type: 'bool' },
|
|
1946
1947
|
{ internalType: 'int256', name: 'netCashIn', type: 'int256' },
|
|
1947
1948
|
{ internalType: 'uint256', name: 'minLpOut', type: 'uint256' },
|
|
1948
1949
|
],
|