@1delta/abis 0.0.16 → 0.0.18

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.
@@ -0,0 +1,146 @@
1
+ export declare const GenericTraderProxyV1Abi: readonly [{
2
+ readonly inputs: readonly [{
3
+ readonly name: "tradeAccountNumber";
4
+ readonly type: "uint256";
5
+ }, {
6
+ readonly name: "marketIdsPath";
7
+ readonly type: "uint256[]";
8
+ }, {
9
+ readonly name: "inputAmountWei";
10
+ readonly type: "uint256";
11
+ }, {
12
+ readonly name: "minOutputAmountWei";
13
+ readonly type: "uint256";
14
+ }, {
15
+ readonly components: readonly [{
16
+ readonly name: "traderType";
17
+ readonly type: "uint8";
18
+ }, {
19
+ readonly name: "makerAccountIndex";
20
+ readonly type: "uint256";
21
+ }, {
22
+ readonly name: "trader";
23
+ readonly type: "address";
24
+ }, {
25
+ readonly name: "tradeData";
26
+ readonly type: "bytes";
27
+ }];
28
+ readonly name: "tradersPath";
29
+ readonly type: "tuple[]";
30
+ }, {
31
+ readonly components: readonly [{
32
+ readonly name: "owner";
33
+ readonly type: "address";
34
+ }, {
35
+ readonly name: "number";
36
+ readonly type: "uint256";
37
+ }];
38
+ readonly name: "makerAccounts";
39
+ readonly type: "tuple[]";
40
+ }, {
41
+ readonly components: readonly [{
42
+ readonly name: "deadline";
43
+ readonly type: "uint256";
44
+ }, {
45
+ readonly name: "balanceCheckFlag";
46
+ readonly type: "uint8";
47
+ }, {
48
+ readonly name: "eventType";
49
+ readonly type: "uint8";
50
+ }];
51
+ readonly name: "userConfig";
52
+ readonly type: "tuple";
53
+ }];
54
+ readonly name: "swapExactInputForOutput";
55
+ readonly outputs: readonly [];
56
+ readonly stateMutability: "nonpayable";
57
+ readonly type: "function";
58
+ }, {
59
+ readonly inputs: readonly [{
60
+ readonly name: "tradeAccountNumber";
61
+ readonly type: "uint256";
62
+ }, {
63
+ readonly name: "marketIdsPath";
64
+ readonly type: "uint256[]";
65
+ }, {
66
+ readonly name: "inputAmountWei";
67
+ readonly type: "uint256";
68
+ }, {
69
+ readonly name: "minOutputAmountWei";
70
+ readonly type: "uint256";
71
+ }, {
72
+ readonly components: readonly [{
73
+ readonly name: "traderType";
74
+ readonly type: "uint8";
75
+ }, {
76
+ readonly name: "makerAccountIndex";
77
+ readonly type: "uint256";
78
+ }, {
79
+ readonly name: "trader";
80
+ readonly type: "address";
81
+ }, {
82
+ readonly name: "tradeData";
83
+ readonly type: "bytes";
84
+ }];
85
+ readonly name: "tradersPath";
86
+ readonly type: "tuple[]";
87
+ }, {
88
+ readonly components: readonly [{
89
+ readonly name: "owner";
90
+ readonly type: "address";
91
+ }, {
92
+ readonly name: "number";
93
+ readonly type: "uint256";
94
+ }];
95
+ readonly name: "makerAccounts";
96
+ readonly type: "tuple[]";
97
+ }, {
98
+ readonly components: readonly [{
99
+ readonly name: "fromAccountNumber";
100
+ readonly type: "uint256";
101
+ }, {
102
+ readonly name: "toAccountNumber";
103
+ readonly type: "uint256";
104
+ }, {
105
+ readonly components: readonly [{
106
+ readonly name: "marketId";
107
+ readonly type: "uint256";
108
+ }, {
109
+ readonly name: "amountWei";
110
+ readonly type: "uint256";
111
+ }];
112
+ readonly name: "transferAmounts";
113
+ readonly type: "tuple[]";
114
+ }];
115
+ readonly name: "transferCollateralParams";
116
+ readonly type: "tuple";
117
+ }, {
118
+ readonly components: readonly [{
119
+ readonly name: "marketId";
120
+ readonly type: "uint256";
121
+ }, {
122
+ readonly name: "expiryTimeDelta";
123
+ readonly type: "uint32";
124
+ }];
125
+ readonly name: "expiryParams";
126
+ readonly type: "tuple";
127
+ }, {
128
+ readonly components: readonly [{
129
+ readonly name: "deadline";
130
+ readonly type: "uint256";
131
+ }, {
132
+ readonly name: "balanceCheckFlag";
133
+ readonly type: "uint8";
134
+ }, {
135
+ readonly name: "eventType";
136
+ readonly type: "uint8";
137
+ }];
138
+ readonly name: "userConfig";
139
+ readonly type: "tuple";
140
+ }];
141
+ readonly name: "swapExactInputForOutputAndModifyPosition";
142
+ readonly outputs: readonly [];
143
+ readonly stateMutability: "nonpayable";
144
+ readonly type: "function";
145
+ }];
146
+ //# sourceMappingURL=genericTraderProxy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"genericTraderProxy.d.ts","sourceRoot":"","sources":["../../src/dolomite/genericTraderProxy.ts"],"names":[],"mappings":"AAsEA,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiC1B,CAAA"}
@@ -0,0 +1,99 @@
1
+ // GenericTraderProxyV1 — swaps inside a margin account: collateral swap, debt
2
+ // swap, and leveraged loop open/close. Registered as a global operator, so it
3
+ // acts on `msg.sender`'s own accounts. Funds being swapped must already be inside
4
+ // DolomiteMargin (no external ERC-20 pull happens here).
5
+ //
6
+ // Enums:
7
+ // TraderType: ExternalLiquidity=0, InternalLiquidity=1,
8
+ // IsolationModeUnwrapper=2, IsolationModeWrapper=3
9
+ // BalanceCheckFlag: Both=0, From=1, To=2, None=3
10
+ // EventEmissionType: None=0, BorrowPosition=1, MarginPosition=2
11
+ //
12
+ // IMPORTANT: `tradeData` on each TraderParam is ONLY the inner, aggregator-
13
+ // specific orderData. The proxy prepends `minOutputAmountWei` itself
14
+ // (data = abi.encode(minOut, tradeData)), so do NOT pre-wrap it.
15
+ const TraderParam = {
16
+ components: [
17
+ { name: 'traderType', type: 'uint8' },
18
+ { name: 'makerAccountIndex', type: 'uint256' },
19
+ { name: 'trader', type: 'address' },
20
+ { name: 'tradeData', type: 'bytes' },
21
+ ],
22
+ name: 'tradersPath',
23
+ type: 'tuple[]',
24
+ };
25
+ const MakerAccounts = {
26
+ components: [
27
+ { name: 'owner', type: 'address' },
28
+ { name: 'number', type: 'uint256' },
29
+ ],
30
+ name: 'makerAccounts',
31
+ type: 'tuple[]',
32
+ };
33
+ const UserConfig = {
34
+ components: [
35
+ { name: 'deadline', type: 'uint256' },
36
+ { name: 'balanceCheckFlag', type: 'uint8' },
37
+ { name: 'eventType', type: 'uint8' },
38
+ ],
39
+ name: 'userConfig',
40
+ type: 'tuple',
41
+ };
42
+ const TransferCollateralParam = {
43
+ components: [
44
+ { name: 'fromAccountNumber', type: 'uint256' },
45
+ { name: 'toAccountNumber', type: 'uint256' },
46
+ {
47
+ components: [
48
+ { name: 'marketId', type: 'uint256' },
49
+ { name: 'amountWei', type: 'uint256' },
50
+ ],
51
+ name: 'transferAmounts',
52
+ type: 'tuple[]',
53
+ },
54
+ ],
55
+ name: 'transferCollateralParams',
56
+ type: 'tuple',
57
+ };
58
+ const ExpiryParam = {
59
+ components: [
60
+ { name: 'marketId', type: 'uint256' },
61
+ { name: 'expiryTimeDelta', type: 'uint32' },
62
+ ],
63
+ name: 'expiryParams',
64
+ type: 'tuple',
65
+ };
66
+ export const GenericTraderProxyV1Abi = [
67
+ {
68
+ inputs: [
69
+ { name: 'tradeAccountNumber', type: 'uint256' },
70
+ { name: 'marketIdsPath', type: 'uint256[]' },
71
+ { name: 'inputAmountWei', type: 'uint256' },
72
+ { name: 'minOutputAmountWei', type: 'uint256' },
73
+ TraderParam,
74
+ MakerAccounts,
75
+ UserConfig,
76
+ ],
77
+ name: 'swapExactInputForOutput',
78
+ outputs: [],
79
+ stateMutability: 'nonpayable',
80
+ type: 'function',
81
+ },
82
+ {
83
+ inputs: [
84
+ { name: 'tradeAccountNumber', type: 'uint256' },
85
+ { name: 'marketIdsPath', type: 'uint256[]' },
86
+ { name: 'inputAmountWei', type: 'uint256' },
87
+ { name: 'minOutputAmountWei', type: 'uint256' },
88
+ TraderParam,
89
+ MakerAccounts,
90
+ TransferCollateralParam,
91
+ ExpiryParam,
92
+ UserConfig,
93
+ ],
94
+ name: 'swapExactInputForOutputAndModifyPosition',
95
+ outputs: [],
96
+ stateMutability: 'nonpayable',
97
+ type: 'function',
98
+ },
99
+ ];
@@ -0,0 +1,6 @@
1
+ export { DolomiteMarginAbi } from './dolomiteMargin.js';
2
+ export { DepositWithdrawalProxyAbi } from './depositWithdrawalProxy.js';
3
+ export { BorrowPositionProxyV1Abi } from './borrowPositionProxy.js';
4
+ export { GenericTraderProxyV1Abi } from './genericTraderProxy.js';
5
+ export { DolomiteMarginOperateAbi } from './dolomiteMarginOperate.js';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/dolomite/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAE,yBAAyB,EAAE,MAAM,6BAA6B,CAAA;AACvE,OAAO,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAA;AACnE,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAA;AACjE,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAA"}
@@ -0,0 +1,5 @@
1
+ export { DolomiteMarginAbi } from './dolomiteMargin.js';
2
+ export { DepositWithdrawalProxyAbi } from './depositWithdrawalProxy.js';
3
+ export { BorrowPositionProxyV1Abi } from './borrowPositionProxy.js';
4
+ export { GenericTraderProxyV1Abi } from './genericTraderProxy.js';
5
+ export { DolomiteMarginOperateAbi } from './dolomiteMarginOperate.js';
@@ -1,3 +1,4 @@
1
1
  export { FluidLendingResolverAbi } from './lendingResolver.js';
2
2
  export { FluidVaultResolverAbi } from './vaultResolver.js';
3
+ export { FluidVaultFactoryAbi } from './vaultFactory.js';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/fluid/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAA;AAC9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/fluid/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,sBAAsB,CAAA;AAC9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAA;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAA"}
@@ -1,2 +1,3 @@
1
1
  export { FluidLendingResolverAbi } from './lendingResolver.js';
2
2
  export { FluidVaultResolverAbi } from './vaultResolver.js';
3
+ export { FluidVaultFactoryAbi } from './vaultFactory.js';
@@ -0,0 +1,14 @@
1
+ export declare const FluidVaultFactoryAbi: readonly [{
2
+ readonly inputs: readonly [{
3
+ readonly name: "tokenId";
4
+ readonly type: "uint256";
5
+ }];
6
+ readonly name: "ownerOf";
7
+ readonly outputs: readonly [{
8
+ readonly name: "";
9
+ readonly type: "address";
10
+ }];
11
+ readonly stateMutability: "view";
12
+ readonly type: "function";
13
+ }];
14
+ //# sourceMappingURL=vaultFactory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vaultFactory.d.ts","sourceRoot":"","sources":["../../src/fluid/vaultFactory.ts"],"names":[],"mappings":"AAQA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;EAQvB,CAAA"}
@@ -0,0 +1,17 @@
1
+ // Fluid VaultFactory ABI (deployed at 0x324c5Dc1fC42c7a4D43d92df1eBA58a54d13Bf2d
2
+ // on every supported chain — deterministic deployment).
3
+ //
4
+ // Only the function used for pre-flight ownership validation on
5
+ // deposit-to-existing-NFT is kept. The factory mints/owns the position
6
+ // NFTs that back every Fluid vault — `ownerOf(nftId)` returns the
7
+ // current owner of a position. Used to verify a caller-supplied nftId
8
+ // actually belongs to the intended receiver before encoding a deposit.
9
+ export const FluidVaultFactoryAbi = [
10
+ {
11
+ inputs: [{ name: 'tokenId', type: 'uint256' }],
12
+ name: 'ownerOf',
13
+ outputs: [{ name: '', type: 'address' }],
14
+ stateMutability: 'view',
15
+ type: 'function',
16
+ },
17
+ ];
package/dist/index.d.ts CHANGED
@@ -3,10 +3,11 @@ export { venusCompoundV2ComptrollerAbi, CompoundV2CEtherAbi, } from './compound-
3
3
  export { CompoundV3CometAbi, CompoundV3BaseBulkerAbi, CompoundV3MainnetBulkerAbi, CompoundV3MainnetWstethBulkerAbi, } from './compound-v3/index.js';
4
4
  export { MorphoBlueAbi, MorphoLensAbi, MetaMorphoAbi, MoolahVaultAbi, bundler3Abi, generalAdapter1Abi, aaveV2MigrationAdapterAbi, aaveV3MigrationAdapterAbi, aaveV3OptimizerMigrationAdapterAbi, compoundV2MigrationAdapterAbi, compoundV3MigrationAdapterAbi, erc20WrapperAdapterAbi, ethereumGeneralAdapter1Abi, paraswapAdapterAbi, coreAdapterAbi, LISTA_BNB_PROVIDER, LISTA_ETH_PROVIDER, LISTA_NATIVE_LENDING_PROVIDER, } from './morpho/index.js';
5
5
  export { SiloV2Abi, SiloConvertToAssetsAbi } from './silo-v2/index.js';
6
- export { FluidLendingResolverAbi, FluidVaultResolverAbi, } from './fluid/index.js';
6
+ export { FluidLendingResolverAbi, FluidVaultResolverAbi, FluidVaultFactoryAbi, } from './fluid/index.js';
7
7
  export { Erc20Abi, Eip2612Abi } from './erc20/index.js';
8
8
  export { Permit2Abi, VenusComptrollerAbi, LenderPermitAbi, } from './permissions/index.js';
9
9
  export { PosManagerAbi } from './init/index.js';
10
+ export { DolomiteMarginAbi, DepositWithdrawalProxyAbi, BorrowPositionProxyV1Abi, GenericTraderProxyV1Abi, DolomiteMarginOperateAbi, } from './dolomite/index.js';
10
11
  export { evcAbi, eVaultAbi, orchestratorAbi, paymentsAbi, } from './euler-v2/index.js';
11
12
  export { GearboxPoolV3Abi, GearboxCreditManagerV3Abi, GearboxCreditFacadeV3Abi, GearboxPoolQuotaKeeperV3Abi, GearboxPriceOracleV3Abi, GearboxAddressProviderV310Abi, GearboxMarketCompressorV310Abi, GearboxCreditAccountCompressorV310Abi, } from './gearbox/index.js';
12
13
  export { AaveV4HubAbi, AaveV4SpokeAbi, AaveV4SpokeActionsAbi, AaveV4OracleAbi, AaveV4InterestRateStrategyAbi, AaveV4GiverPMAbi, AaveV4TakerPMAbi, AaveV4ConfigPMAbi, AaveV4NativeTokenGatewayAbi, } from './aave-v4/index.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,kBAAkB,EAClB,qBAAqB,GACtB,MAAM,iBAAiB,CAAA;AACxB,OAAO,EACL,6BAA6B,EAC7B,mBAAmB,GACpB,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EACL,kBAAkB,EAClB,uBAAuB,EACvB,0BAA0B,EAC1B,gCAAgC,GACjC,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EACL,aAAa,EACb,aAAa,EACb,aAAa,EACb,cAAc,EACd,WAAW,EACX,kBAAkB,EAClB,yBAAyB,EACzB,yBAAyB,EACzB,kCAAkC,EAClC,6BAA6B,EAC7B,6BAA6B,EAC7B,sBAAsB,EACtB,0BAA0B,EAC1B,kBAAkB,EAClB,cAAc,EACd,kBAAkB,EAClB,kBAAkB,EAClB,6BAA6B,GAC9B,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EAAE,SAAS,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAA;AACtE,OAAO,EACL,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,kBAAkB,CAAA;AACzB,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,EACL,UAAU,EACV,mBAAmB,EACnB,eAAe,GAChB,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EACL,MAAM,EACN,SAAS,EACT,eAAe,EACf,WAAW,GACZ,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EACL,gBAAgB,EAChB,yBAAyB,EACzB,wBAAwB,EACxB,2BAA2B,EAC3B,uBAAuB,EACvB,6BAA6B,EAC7B,8BAA8B,EAC9B,qCAAqC,GACtC,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EACL,YAAY,EACZ,cAAc,EACd,qBAAqB,EACrB,eAAe,EACf,6BAA6B,EAC7B,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EACjB,2BAA2B,GAC5B,MAAM,oBAAoB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,kBAAkB,EAClB,qBAAqB,GACtB,MAAM,iBAAiB,CAAA;AACxB,OAAO,EACL,6BAA6B,EAC7B,mBAAmB,GACpB,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EACL,kBAAkB,EAClB,uBAAuB,EACvB,0BAA0B,EAC1B,gCAAgC,GACjC,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EACL,aAAa,EACb,aAAa,EACb,aAAa,EACb,cAAc,EACd,WAAW,EACX,kBAAkB,EAClB,yBAAyB,EACzB,yBAAyB,EACzB,kCAAkC,EAClC,6BAA6B,EAC7B,6BAA6B,EAC7B,sBAAsB,EACtB,0BAA0B,EAC1B,kBAAkB,EAClB,cAAc,EACd,kBAAkB,EAClB,kBAAkB,EAClB,6BAA6B,GAC9B,MAAM,mBAAmB,CAAA;AAC1B,OAAO,EAAE,SAAS,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAA;AACtE,OAAO,EACL,uBAAuB,EACvB,qBAAqB,EACrB,oBAAoB,GACrB,MAAM,kBAAkB,CAAA;AACzB,OAAO,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAA;AACvD,OAAO,EACL,UAAU,EACV,mBAAmB,EACnB,eAAe,GAChB,MAAM,wBAAwB,CAAA;AAC/B,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EACL,iBAAiB,EACjB,yBAAyB,EACzB,wBAAwB,EACxB,uBAAuB,EACvB,wBAAwB,GACzB,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EACL,MAAM,EACN,SAAS,EACT,eAAe,EACf,WAAW,GACZ,MAAM,qBAAqB,CAAA;AAC5B,OAAO,EACL,gBAAgB,EAChB,yBAAyB,EACzB,wBAAwB,EACxB,2BAA2B,EAC3B,uBAAuB,EACvB,6BAA6B,EAC7B,8BAA8B,EAC9B,qCAAqC,GACtC,MAAM,oBAAoB,CAAA;AAC3B,OAAO,EACL,YAAY,EACZ,cAAc,EACd,qBAAqB,EACrB,eAAe,EACf,6BAA6B,EAC7B,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EACjB,2BAA2B,GAC5B,MAAM,oBAAoB,CAAA"}
package/dist/index.js CHANGED
@@ -3,10 +3,11 @@ export { venusCompoundV2ComptrollerAbi, CompoundV2CEtherAbi, } from './compound-
3
3
  export { CompoundV3CometAbi, CompoundV3BaseBulkerAbi, CompoundV3MainnetBulkerAbi, CompoundV3MainnetWstethBulkerAbi, } from './compound-v3/index.js';
4
4
  export { MorphoBlueAbi, MorphoLensAbi, MetaMorphoAbi, MoolahVaultAbi, bundler3Abi, generalAdapter1Abi, aaveV2MigrationAdapterAbi, aaveV3MigrationAdapterAbi, aaveV3OptimizerMigrationAdapterAbi, compoundV2MigrationAdapterAbi, compoundV3MigrationAdapterAbi, erc20WrapperAdapterAbi, ethereumGeneralAdapter1Abi, paraswapAdapterAbi, coreAdapterAbi, LISTA_BNB_PROVIDER, LISTA_ETH_PROVIDER, LISTA_NATIVE_LENDING_PROVIDER, } from './morpho/index.js';
5
5
  export { SiloV2Abi, SiloConvertToAssetsAbi } from './silo-v2/index.js';
6
- export { FluidLendingResolverAbi, FluidVaultResolverAbi, } from './fluid/index.js';
6
+ export { FluidLendingResolverAbi, FluidVaultResolverAbi, FluidVaultFactoryAbi, } from './fluid/index.js';
7
7
  export { Erc20Abi, Eip2612Abi } from './erc20/index.js';
8
8
  export { Permit2Abi, VenusComptrollerAbi, LenderPermitAbi, } from './permissions/index.js';
9
9
  export { PosManagerAbi } from './init/index.js';
10
+ export { DolomiteMarginAbi, DepositWithdrawalProxyAbi, BorrowPositionProxyV1Abi, GenericTraderProxyV1Abi, DolomiteMarginOperateAbi, } from './dolomite/index.js';
10
11
  export { evcAbi, eVaultAbi, orchestratorAbi, paymentsAbi, } from './euler-v2/index.js';
11
12
  export { GearboxPoolV3Abi, GearboxCreditManagerV3Abi, GearboxCreditFacadeV3Abi, GearboxPoolQuotaKeeperV3Abi, GearboxPriceOracleV3Abi, GearboxAddressProviderV310Abi, GearboxMarketCompressorV310Abi, GearboxCreditAccountCompressorV310Abi, } from './gearbox/index.js';
12
13
  export { AaveV4HubAbi, AaveV4SpokeAbi, AaveV4SpokeActionsAbi, AaveV4OracleAbi, AaveV4InterestRateStrategyAbi, AaveV4GiverPMAbi, AaveV4TakerPMAbi, AaveV4ConfigPMAbi, AaveV4NativeTokenGatewayAbi, } from './aave-v4/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1delta/abis",
3
- "version": "0.0.16",
3
+ "version": "0.0.18",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",