@gearbox-protocol/sdk 3.0.0-vfourabi.4 → 3.0.0-vfourabi.6

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.
Files changed (66) hide show
  1. package/.yarn/install-state.gz +0 -0
  2. package/dist/cjs/abi/compressors.cjs +3848 -3823
  3. package/dist/cjs/abi/compressors.d.ts +13 -15
  4. package/dist/cjs/abi/errors.cjs +188 -195
  5. package/dist/cjs/abi/errors.d.ts +6 -8
  6. package/dist/cjs/abi/iCurvePool.cjs +1 -0
  7. package/dist/cjs/abi/iCurvePool.d.ts +0 -0
  8. package/dist/cjs/abi/iERC20.cjs +123 -122
  9. package/dist/cjs/abi/iERC20.d.ts +1 -3
  10. package/dist/cjs/abi/iPausable.cjs +37 -39
  11. package/dist/cjs/abi/iPausable.d.ts +1 -3
  12. package/dist/cjs/abi/iPriceFeedStore.cjs +229 -231
  13. package/dist/cjs/abi/iPriceFeedStore.d.ts +1 -3
  14. package/dist/cjs/abi/iUpdatablePriceFeed.cjs +18 -20
  15. package/dist/cjs/abi/iUpdatablePriceFeed.d.ts +1 -3
  16. package/dist/cjs/abi/iVersion.cjs +30 -32
  17. package/dist/cjs/abi/iVersion.d.ts +1 -3
  18. package/dist/cjs/abi/iZapper.cjs +85 -84
  19. package/dist/cjs/abi/iZapper.d.ts +1 -3
  20. package/dist/cjs/abi/index.cjs +27 -0
  21. package/dist/cjs/abi/index.d.ts +11 -0
  22. package/dist/cjs/abi/routerV300.cjs +378 -381
  23. package/dist/cjs/abi/routerV300.d.ts +2 -4
  24. package/dist/cjs/abi/v300.cjs +4125 -4138
  25. package/dist/cjs/abi/v300.d.ts +12 -14
  26. package/dist/cjs/abi/v310.cjs +5141 -5116
  27. package/dist/cjs/abi/v310.d.ts +13 -15
  28. package/dist/cjs/dev/index.d.ts +287 -1
  29. package/dist/cjs/sdk/index.cjs +18865 -18931
  30. package/dist/cjs/sdk/index.d.ts +13552 -8345
  31. package/dist/esm/abi/compressors.d.mts +13 -15
  32. package/dist/esm/abi/compressors.mjs +3845 -3809
  33. package/dist/esm/abi/errors.d.mts +6 -8
  34. package/dist/esm/abi/errors.mjs +185 -188
  35. package/dist/esm/abi/iCurvePool.d.mts +0 -0
  36. package/dist/esm/abi/iCurvePool.mjs +1 -0
  37. package/dist/esm/abi/iERC20.d.mts +1 -3
  38. package/dist/esm/abi/iERC20.mjs +120 -120
  39. package/dist/esm/abi/iPausable.d.mts +1 -3
  40. package/dist/esm/abi/iPausable.mjs +34 -37
  41. package/dist/esm/abi/iPriceFeedStore.d.mts +1 -3
  42. package/dist/esm/abi/iPriceFeedStore.mjs +226 -229
  43. package/dist/esm/abi/iUpdatablePriceFeed.d.mts +1 -3
  44. package/dist/esm/abi/iUpdatablePriceFeed.mjs +15 -18
  45. package/dist/esm/abi/iVersion.d.mts +1 -3
  46. package/dist/esm/abi/iVersion.mjs +27 -30
  47. package/dist/esm/abi/iZapper.d.mts +1 -3
  48. package/dist/esm/abi/iZapper.mjs +82 -82
  49. package/dist/esm/abi/index.d.mts +11 -0
  50. package/dist/esm/abi/index.mjs +11 -0
  51. package/dist/esm/abi/routerV300.d.mts +2 -4
  52. package/dist/esm/abi/routerV300.mjs +375 -378
  53. package/dist/esm/abi/v300.d.mts +12 -14
  54. package/dist/esm/abi/v300.mjs +4122 -4125
  55. package/dist/esm/abi/v310.d.mts +13 -15
  56. package/dist/esm/abi/v310.mjs +5138 -5102
  57. package/dist/esm/dev/index.d.mts +287 -1
  58. package/dist/esm/sdk/index.d.mts +13552 -8345
  59. package/dist/esm/sdk/index.mjs +18866 -18908
  60. package/package.json +1 -2
  61. package/src/abi/iCurvePool.ts +0 -0
  62. package/src/abi/index.ts +11 -0
  63. package/src/sdk/index.ts +0 -1
  64. package/tsconfig.abi.json +4 -0
  65. package/tsup.config.ts +58 -8
  66. package/tsconfig.build.json +0 -4
@@ -1,4 +1,4 @@
1
- declare const iRedstonePriceFeedExceptionsAbi: readonly [{
1
+ export declare const iRedstonePriceFeedExceptionsAbi: readonly [{
2
2
  readonly type: "error";
3
3
  readonly inputs: readonly [];
4
4
  readonly name: "DataPackageTimestampIncorrect";
@@ -19,7 +19,7 @@ declare const iRedstonePriceFeedExceptionsAbi: readonly [{
19
19
  readonly inputs: readonly [];
20
20
  readonly name: "RedstonePayloadTimestampIncorrect";
21
21
  }];
22
- declare const ilpPriceFeedExceptionsAbi: readonly [{
22
+ export declare const ilpPriceFeedExceptionsAbi: readonly [{
23
23
  readonly type: "error";
24
24
  readonly inputs: readonly [];
25
25
  readonly name: "ExchangeRateOutOfBoundsException";
@@ -40,7 +40,7 @@ declare const ilpPriceFeedExceptionsAbi: readonly [{
40
40
  readonly inputs: readonly [];
41
41
  readonly name: "UpdateBoundsNotAllowedException";
42
42
  }];
43
- declare const iRouterV3ErrorsAbi: readonly [{
43
+ export declare const iRouterV3ErrorsAbi: readonly [{
44
44
  readonly type: "error";
45
45
  readonly inputs: readonly [{
46
46
  readonly name: "tokenIn";
@@ -85,7 +85,7 @@ declare const iRouterV3ErrorsAbi: readonly [{
85
85
  }];
86
86
  readonly name: "UnsupportedRouterComponent";
87
87
  }];
88
- declare const iExceptionsAbi: readonly [{
88
+ export declare const iExceptionsAbi: readonly [{
89
89
  readonly type: "error";
90
90
  readonly inputs: readonly [];
91
91
  readonly name: "ActiveCreditAccountNotSetException";
@@ -446,7 +446,7 @@ declare const iExceptionsAbi: readonly [{
446
446
  readonly inputs: readonly [];
447
447
  readonly name: "ZeroAddressException";
448
448
  }];
449
- declare const iRedstoneErrorsAbi: readonly [{
449
+ export declare const iRedstoneErrorsAbi: readonly [{
450
450
  readonly type: "error";
451
451
  readonly inputs: readonly [];
452
452
  readonly name: "CalldataMustHaveValidPayload";
@@ -491,7 +491,7 @@ declare const iRedstoneErrorsAbi: readonly [{
491
491
  }];
492
492
  readonly name: "SignerNotAuthorised";
493
493
  }];
494
- declare const errorAbis: readonly [{
494
+ export declare const errorAbis: readonly [{
495
495
  readonly type: "error";
496
496
  readonly inputs: readonly [];
497
497
  readonly name: "ActiveCreditAccountNotSetException";
@@ -980,5 +980,3 @@ declare const errorAbis: readonly [{
980
980
  }];
981
981
  readonly name: "UnsupportedRouterComponent";
982
982
  }];
983
-
984
- export { errorAbis, iExceptionsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedExceptionsAbi, iRouterV3ErrorsAbi, ilpPriceFeedExceptionsAbi };
@@ -1,194 +1,191 @@
1
- // src/abi/errors.ts
2
- var iRedstonePriceFeedExceptionsAbi = [
3
- { type: "error", inputs: [], name: "DataPackageTimestampIncorrect" },
4
- { type: "error", inputs: [], name: "DuplicateSignersException" },
5
- { type: "error", inputs: [], name: "IncorrectSignersThresholdException" },
6
- { type: "error", inputs: [], name: "NotEnoughSignersException" },
7
- { type: "error", inputs: [], name: "RedstonePayloadTimestampIncorrect" }
1
+ export const iRedstonePriceFeedExceptionsAbi = [
2
+ { type: "error", inputs: [], name: "DataPackageTimestampIncorrect" },
3
+ { type: "error", inputs: [], name: "DuplicateSignersException" },
4
+ { type: "error", inputs: [], name: "IncorrectSignersThresholdException" },
5
+ { type: "error", inputs: [], name: "NotEnoughSignersException" },
6
+ { type: "error", inputs: [], name: "RedstonePayloadTimestampIncorrect" },
8
7
  ];
9
- var ilpPriceFeedExceptionsAbi = [
10
- { type: "error", inputs: [], name: "ExchangeRateOutOfBoundsException" },
11
- { type: "error", inputs: [], name: "LowerBoundCantBeZeroException" },
12
- { type: "error", inputs: [], name: "ReserveFeedMustNotBeSelfException" },
13
- { type: "error", inputs: [], name: "UpdateBoundsBeforeCooldownException" },
14
- { type: "error", inputs: [], name: "UpdateBoundsNotAllowedException" }
8
+ export const ilpPriceFeedExceptionsAbi = [
9
+ { type: "error", inputs: [], name: "ExchangeRateOutOfBoundsException" },
10
+ { type: "error", inputs: [], name: "LowerBoundCantBeZeroException" },
11
+ { type: "error", inputs: [], name: "ReserveFeedMustNotBeSelfException" },
12
+ { type: "error", inputs: [], name: "UpdateBoundsBeforeCooldownException" },
13
+ { type: "error", inputs: [], name: "UpdateBoundsNotAllowedException" },
15
14
  ];
16
- var iRouterV3ErrorsAbi = [
17
- {
18
- type: "error",
19
- inputs: [
20
- { name: "tokenIn", internalType: "address", type: "address" },
21
- { name: "tokenOut", internalType: "address", type: "address" }
22
- ],
23
- name: "PathNotFoundException"
24
- },
25
- {
26
- type: "error",
27
- inputs: [
28
- { name: "ttIn", internalType: "uint8", type: "uint8" },
29
- { name: "tokenOut", internalType: "address", type: "address" }
30
- ],
31
- name: "PathNotFoundExceptionTyped"
32
- },
33
- {
34
- type: "error",
35
- inputs: [{ name: "tokenOut", internalType: "address", type: "address" }],
36
- name: "PathToTargetNotFound"
37
- },
38
- { type: "error", inputs: [], name: "UnsupportedAdapterType" },
39
- {
40
- type: "error",
41
- inputs: [{ name: "", internalType: "address", type: "address" }],
42
- name: "UnsupportedRouterComponent"
43
- }
15
+ export const iRouterV3ErrorsAbi = [
16
+ {
17
+ type: "error",
18
+ inputs: [
19
+ { name: "tokenIn", internalType: "address", type: "address" },
20
+ { name: "tokenOut", internalType: "address", type: "address" },
21
+ ],
22
+ name: "PathNotFoundException",
23
+ },
24
+ {
25
+ type: "error",
26
+ inputs: [
27
+ { name: "ttIn", internalType: "uint8", type: "uint8" },
28
+ { name: "tokenOut", internalType: "address", type: "address" },
29
+ ],
30
+ name: "PathNotFoundExceptionTyped",
31
+ },
32
+ {
33
+ type: "error",
34
+ inputs: [{ name: "tokenOut", internalType: "address", type: "address" }],
35
+ name: "PathToTargetNotFound",
36
+ },
37
+ { type: "error", inputs: [], name: "UnsupportedAdapterType" },
38
+ {
39
+ type: "error",
40
+ inputs: [{ name: "", internalType: "address", type: "address" }],
41
+ name: "UnsupportedRouterComponent",
42
+ },
44
43
  ];
45
- var iExceptionsAbi = [
46
- { type: "error", inputs: [], name: "ActiveCreditAccountNotSetException" },
47
- { type: "error", inputs: [], name: "ActiveCreditAccountOverridenException" },
48
- { type: "error", inputs: [], name: "AdapterIsNotRegisteredException" },
49
- {
50
- type: "error",
51
- inputs: [{ name: "", internalType: "address", type: "address" }],
52
- name: "AddressIsNotContractException"
53
- },
54
- { type: "error", inputs: [], name: "AddressNotFoundException" },
55
- { type: "error", inputs: [], name: "AllowanceFailedException" },
56
- { type: "error", inputs: [], name: "AmountCantBeZeroException" },
57
- { type: "error", inputs: [], name: "BalanceLessThanExpectedException" },
58
- { type: "error", inputs: [], name: "BorrowAmountOutOfLimitsException" },
59
- { type: "error", inputs: [], name: "BorrowedBlockLimitException" },
60
- { type: "error", inputs: [], name: "BorrowingMoreThanU2ForbiddenException" },
61
- { type: "error", inputs: [], name: "CallerNotAccountFactoryException" },
62
- { type: "error", inputs: [], name: "CallerNotAdapterException" },
63
- { type: "error", inputs: [], name: "CallerNotConfiguratorException" },
64
- { type: "error", inputs: [], name: "CallerNotControllerException" },
65
- { type: "error", inputs: [], name: "CallerNotCreditAccountOwnerException" },
66
- { type: "error", inputs: [], name: "CallerNotCreditFacadeException" },
67
- { type: "error", inputs: [], name: "CallerNotCreditManagerException" },
68
- { type: "error", inputs: [], name: "CallerNotExecutorException" },
69
- { type: "error", inputs: [], name: "CallerNotGaugeException" },
70
- { type: "error", inputs: [], name: "CallerNotMigratorException" },
71
- { type: "error", inputs: [], name: "CallerNotPausableAdminException" },
72
- { type: "error", inputs: [], name: "CallerNotPoolQuotaKeeperException" },
73
- { type: "error", inputs: [], name: "CallerNotUnpausableAdminException" },
74
- { type: "error", inputs: [], name: "CallerNotVetoAdminException" },
75
- { type: "error", inputs: [], name: "CallerNotVoterException" },
76
- { type: "error", inputs: [], name: "CloseAccountWithEnabledTokensException" },
77
- { type: "error", inputs: [], name: "CloseAccountWithNonZeroDebtException" },
78
- { type: "error", inputs: [], name: "CreditAccountDoesNotExistException" },
79
- { type: "error", inputs: [], name: "CreditAccountIsInUseException" },
80
- { type: "error", inputs: [], name: "CreditAccountNotLiquidatableException" },
81
- { type: "error", inputs: [], name: "CreditManagerCantBorrowException" },
82
- { type: "error", inputs: [], name: "CustomHealthFactorTooLowException" },
83
- { type: "error", inputs: [], name: "DebtToZeroWithActiveQuotasException" },
84
- { type: "error", inputs: [], name: "DebtUpdatedTwiceInOneBlockException" },
85
- { type: "error", inputs: [], name: "ExpectedBalancesAlreadySetException" },
86
- { type: "error", inputs: [], name: "ExpectedBalancesNotSetException" },
87
- { type: "error", inputs: [], name: "ForbiddenInWhitelistedModeException" },
88
- {
89
- type: "error",
90
- inputs: [],
91
- name: "ForbiddenTokenBalanceIncreasedException"
92
- },
93
- { type: "error", inputs: [], name: "ForbiddenTokenEnabledException" },
94
- { type: "error", inputs: [], name: "ForbiddenTokensException" },
95
- { type: "error", inputs: [], name: "IncompatibleContractException" },
96
- { type: "error", inputs: [], name: "IncompatibleCreditManagerException" },
97
- { type: "error", inputs: [], name: "IncompatiblePoolQuotaKeeperException" },
98
- { type: "error", inputs: [], name: "IncompatibleSuccessorException" },
99
- { type: "error", inputs: [], name: "IncorrectExpirationDateException" },
100
- { type: "error", inputs: [], name: "IncorrectLimitsException" },
101
- { type: "error", inputs: [], name: "IncorrectLiquidationThresholdException" },
102
- { type: "error", inputs: [], name: "IncorrectParameterException" },
103
- { type: "error", inputs: [], name: "IncorrectPriceException" },
104
- { type: "error", inputs: [], name: "IncorrectPriceFeedException" },
105
- { type: "error", inputs: [], name: "IncorrectTokenContractException" },
106
- { type: "error", inputs: [], name: "InsufficientBalanceException" },
107
- { type: "error", inputs: [], name: "InsufficientRemainingFundsException" },
108
- { type: "error", inputs: [], name: "InsufficientVotesException" },
109
- { type: "error", inputs: [], name: "InvalidBotException" },
110
- { type: "error", inputs: [], name: "InvalidCollateralHintException" },
111
- {
112
- type: "error",
113
- inputs: [],
114
- name: "MasterCreditAccountAlreadyDeployedException"
115
- },
116
- {
117
- type: "error",
118
- inputs: [{ name: "permission", internalType: "uint256", type: "uint256" }],
119
- name: "NoPermissionException"
120
- },
121
- { type: "error", inputs: [], name: "NotAllowedAfterExpirationException" },
122
- { type: "error", inputs: [], name: "NotAllowedWhenNotExpirableException" },
123
- { type: "error", inputs: [], name: "NotApprovedBotException" },
124
- { type: "error", inputs: [], name: "NotEnoughCollateralException" },
125
- { type: "error", inputs: [], name: "NotImplementedException" },
126
- { type: "error", inputs: [], name: "ParameterChangedAfterQueuedTxException" },
127
- { type: "error", inputs: [], name: "ParameterChecksFailedException" },
128
- { type: "error", inputs: [], name: "PriceFeedDoesNotExistException" },
129
- { type: "error", inputs: [], name: "QuotaIsOutOfBoundsException" },
130
- { type: "error", inputs: [], name: "ReceiveIsNotAllowedException" },
131
- { type: "error", inputs: [], name: "RegisteredCreditManagerOnlyException" },
132
- { type: "error", inputs: [], name: "RegisteredPoolOnlyException" },
133
- {
134
- type: "error",
135
- inputs: [],
136
- name: "RemainingTokenBalanceIncreasedException"
137
- },
138
- { type: "error", inputs: [], name: "StalePriceException" },
139
- { type: "error", inputs: [], name: "TargetContractNotAllowedException" },
140
- { type: "error", inputs: [], name: "TokenAlreadyAddedException" },
141
- { type: "error", inputs: [], name: "TokenIsNotQuotedException" },
142
- { type: "error", inputs: [], name: "TokenNotAllowedException" },
143
- { type: "error", inputs: [], name: "TooManyEnabledTokensException" },
144
- { type: "error", inputs: [], name: "TooManyTokensException" },
145
- { type: "error", inputs: [], name: "TxExecutedOutsideTimeWindowException" },
146
- { type: "error", inputs: [], name: "TxExecutionRevertedException" },
147
- { type: "error", inputs: [], name: "TxNotQueuedException" },
148
- { type: "error", inputs: [], name: "UnexpectedPermissionsException" },
149
- { type: "error", inputs: [], name: "UnknownMethodException" },
150
- { type: "error", inputs: [], name: "UpdateQuotaOnZeroDebtAccountException" },
151
- { type: "error", inputs: [], name: "ValueOutOfRangeException" },
152
- { type: "error", inputs: [], name: "VotingContractNotAllowedException" },
153
- { type: "error", inputs: [], name: "ZeroAddressException" }
44
+ export const iExceptionsAbi = [
45
+ { type: "error", inputs: [], name: "ActiveCreditAccountNotSetException" },
46
+ { type: "error", inputs: [], name: "ActiveCreditAccountOverridenException" },
47
+ { type: "error", inputs: [], name: "AdapterIsNotRegisteredException" },
48
+ {
49
+ type: "error",
50
+ inputs: [{ name: "", internalType: "address", type: "address" }],
51
+ name: "AddressIsNotContractException",
52
+ },
53
+ { type: "error", inputs: [], name: "AddressNotFoundException" },
54
+ { type: "error", inputs: [], name: "AllowanceFailedException" },
55
+ { type: "error", inputs: [], name: "AmountCantBeZeroException" },
56
+ { type: "error", inputs: [], name: "BalanceLessThanExpectedException" },
57
+ { type: "error", inputs: [], name: "BorrowAmountOutOfLimitsException" },
58
+ { type: "error", inputs: [], name: "BorrowedBlockLimitException" },
59
+ { type: "error", inputs: [], name: "BorrowingMoreThanU2ForbiddenException" },
60
+ { type: "error", inputs: [], name: "CallerNotAccountFactoryException" },
61
+ { type: "error", inputs: [], name: "CallerNotAdapterException" },
62
+ { type: "error", inputs: [], name: "CallerNotConfiguratorException" },
63
+ { type: "error", inputs: [], name: "CallerNotControllerException" },
64
+ { type: "error", inputs: [], name: "CallerNotCreditAccountOwnerException" },
65
+ { type: "error", inputs: [], name: "CallerNotCreditFacadeException" },
66
+ { type: "error", inputs: [], name: "CallerNotCreditManagerException" },
67
+ { type: "error", inputs: [], name: "CallerNotExecutorException" },
68
+ { type: "error", inputs: [], name: "CallerNotGaugeException" },
69
+ { type: "error", inputs: [], name: "CallerNotMigratorException" },
70
+ { type: "error", inputs: [], name: "CallerNotPausableAdminException" },
71
+ { type: "error", inputs: [], name: "CallerNotPoolQuotaKeeperException" },
72
+ { type: "error", inputs: [], name: "CallerNotUnpausableAdminException" },
73
+ { type: "error", inputs: [], name: "CallerNotVetoAdminException" },
74
+ { type: "error", inputs: [], name: "CallerNotVoterException" },
75
+ { type: "error", inputs: [], name: "CloseAccountWithEnabledTokensException" },
76
+ { type: "error", inputs: [], name: "CloseAccountWithNonZeroDebtException" },
77
+ { type: "error", inputs: [], name: "CreditAccountDoesNotExistException" },
78
+ { type: "error", inputs: [], name: "CreditAccountIsInUseException" },
79
+ { type: "error", inputs: [], name: "CreditAccountNotLiquidatableException" },
80
+ { type: "error", inputs: [], name: "CreditManagerCantBorrowException" },
81
+ { type: "error", inputs: [], name: "CustomHealthFactorTooLowException" },
82
+ { type: "error", inputs: [], name: "DebtToZeroWithActiveQuotasException" },
83
+ { type: "error", inputs: [], name: "DebtUpdatedTwiceInOneBlockException" },
84
+ { type: "error", inputs: [], name: "ExpectedBalancesAlreadySetException" },
85
+ { type: "error", inputs: [], name: "ExpectedBalancesNotSetException" },
86
+ { type: "error", inputs: [], name: "ForbiddenInWhitelistedModeException" },
87
+ {
88
+ type: "error",
89
+ inputs: [],
90
+ name: "ForbiddenTokenBalanceIncreasedException",
91
+ },
92
+ { type: "error", inputs: [], name: "ForbiddenTokenEnabledException" },
93
+ { type: "error", inputs: [], name: "ForbiddenTokensException" },
94
+ { type: "error", inputs: [], name: "IncompatibleContractException" },
95
+ { type: "error", inputs: [], name: "IncompatibleCreditManagerException" },
96
+ { type: "error", inputs: [], name: "IncompatiblePoolQuotaKeeperException" },
97
+ { type: "error", inputs: [], name: "IncompatibleSuccessorException" },
98
+ { type: "error", inputs: [], name: "IncorrectExpirationDateException" },
99
+ { type: "error", inputs: [], name: "IncorrectLimitsException" },
100
+ { type: "error", inputs: [], name: "IncorrectLiquidationThresholdException" },
101
+ { type: "error", inputs: [], name: "IncorrectParameterException" },
102
+ { type: "error", inputs: [], name: "IncorrectPriceException" },
103
+ { type: "error", inputs: [], name: "IncorrectPriceFeedException" },
104
+ { type: "error", inputs: [], name: "IncorrectTokenContractException" },
105
+ { type: "error", inputs: [], name: "InsufficientBalanceException" },
106
+ { type: "error", inputs: [], name: "InsufficientRemainingFundsException" },
107
+ { type: "error", inputs: [], name: "InsufficientVotesException" },
108
+ { type: "error", inputs: [], name: "InvalidBotException" },
109
+ { type: "error", inputs: [], name: "InvalidCollateralHintException" },
110
+ {
111
+ type: "error",
112
+ inputs: [],
113
+ name: "MasterCreditAccountAlreadyDeployedException",
114
+ },
115
+ {
116
+ type: "error",
117
+ inputs: [{ name: "permission", internalType: "uint256", type: "uint256" }],
118
+ name: "NoPermissionException",
119
+ },
120
+ { type: "error", inputs: [], name: "NotAllowedAfterExpirationException" },
121
+ { type: "error", inputs: [], name: "NotAllowedWhenNotExpirableException" },
122
+ { type: "error", inputs: [], name: "NotApprovedBotException" },
123
+ { type: "error", inputs: [], name: "NotEnoughCollateralException" },
124
+ { type: "error", inputs: [], name: "NotImplementedException" },
125
+ { type: "error", inputs: [], name: "ParameterChangedAfterQueuedTxException" },
126
+ { type: "error", inputs: [], name: "ParameterChecksFailedException" },
127
+ { type: "error", inputs: [], name: "PriceFeedDoesNotExistException" },
128
+ { type: "error", inputs: [], name: "QuotaIsOutOfBoundsException" },
129
+ { type: "error", inputs: [], name: "ReceiveIsNotAllowedException" },
130
+ { type: "error", inputs: [], name: "RegisteredCreditManagerOnlyException" },
131
+ { type: "error", inputs: [], name: "RegisteredPoolOnlyException" },
132
+ {
133
+ type: "error",
134
+ inputs: [],
135
+ name: "RemainingTokenBalanceIncreasedException",
136
+ },
137
+ { type: "error", inputs: [], name: "StalePriceException" },
138
+ { type: "error", inputs: [], name: "TargetContractNotAllowedException" },
139
+ { type: "error", inputs: [], name: "TokenAlreadyAddedException" },
140
+ { type: "error", inputs: [], name: "TokenIsNotQuotedException" },
141
+ { type: "error", inputs: [], name: "TokenNotAllowedException" },
142
+ { type: "error", inputs: [], name: "TooManyEnabledTokensException" },
143
+ { type: "error", inputs: [], name: "TooManyTokensException" },
144
+ { type: "error", inputs: [], name: "TxExecutedOutsideTimeWindowException" },
145
+ { type: "error", inputs: [], name: "TxExecutionRevertedException" },
146
+ { type: "error", inputs: [], name: "TxNotQueuedException" },
147
+ { type: "error", inputs: [], name: "UnexpectedPermissionsException" },
148
+ { type: "error", inputs: [], name: "UnknownMethodException" },
149
+ { type: "error", inputs: [], name: "UpdateQuotaOnZeroDebtAccountException" },
150
+ { type: "error", inputs: [], name: "ValueOutOfRangeException" },
151
+ { type: "error", inputs: [], name: "VotingContractNotAllowedException" },
152
+ { type: "error", inputs: [], name: "ZeroAddressException" },
154
153
  ];
155
- var iRedstoneErrorsAbi = [
156
- { type: "error", inputs: [], name: "CalldataMustHaveValidPayload" },
157
- { type: "error", inputs: [], name: "CalldataOverOrUnderFlow" },
158
- { type: "error", inputs: [], name: "EachSignerMustProvideTheSameValue" },
159
- { type: "error", inputs: [], name: "EmptyCalldataPointersArr" },
160
- { type: "error", inputs: [], name: "IncorrectUnsignedMetadataSize" },
161
- {
162
- type: "error",
163
- inputs: [
164
- {
165
- name: "receivedSignersCount",
166
- internalType: "uint256",
167
- type: "uint256"
168
- },
169
- {
170
- name: "requiredSignersCount",
171
- internalType: "uint256",
172
- type: "uint256"
173
- }
174
- ],
175
- name: "InsufficientNumberOfUniqueSigners"
176
- },
177
- { type: "error", inputs: [], name: "InvalidCalldataPointer" },
178
- {
179
- type: "error",
180
- inputs: [
181
- { name: "receivedSigner", internalType: "address", type: "address" }
182
- ],
183
- name: "SignerNotAuthorised"
184
- }
154
+ export const iRedstoneErrorsAbi = [
155
+ { type: "error", inputs: [], name: "CalldataMustHaveValidPayload" },
156
+ { type: "error", inputs: [], name: "CalldataOverOrUnderFlow" },
157
+ { type: "error", inputs: [], name: "EachSignerMustProvideTheSameValue" },
158
+ { type: "error", inputs: [], name: "EmptyCalldataPointersArr" },
159
+ { type: "error", inputs: [], name: "IncorrectUnsignedMetadataSize" },
160
+ {
161
+ type: "error",
162
+ inputs: [
163
+ {
164
+ name: "receivedSignersCount",
165
+ internalType: "uint256",
166
+ type: "uint256",
167
+ },
168
+ {
169
+ name: "requiredSignersCount",
170
+ internalType: "uint256",
171
+ type: "uint256",
172
+ },
173
+ ],
174
+ name: "InsufficientNumberOfUniqueSigners",
175
+ },
176
+ { type: "error", inputs: [], name: "InvalidCalldataPointer" },
177
+ {
178
+ type: "error",
179
+ inputs: [
180
+ { name: "receivedSigner", internalType: "address", type: "address" },
181
+ ],
182
+ name: "SignerNotAuthorised",
183
+ },
185
184
  ];
186
- var errorAbis = [
187
- ...iExceptionsAbi,
188
- ...iRedstonePriceFeedExceptionsAbi,
189
- ...iRedstoneErrorsAbi,
190
- ...ilpPriceFeedExceptionsAbi,
191
- ...iRouterV3ErrorsAbi
185
+ export const errorAbis = [
186
+ ...iExceptionsAbi,
187
+ ...iRedstonePriceFeedExceptionsAbi,
188
+ ...iRedstoneErrorsAbi,
189
+ ...ilpPriceFeedExceptionsAbi,
190
+ ...iRouterV3ErrorsAbi,
192
191
  ];
193
-
194
- export { errorAbis, iExceptionsAbi, iRedstoneErrorsAbi, iRedstonePriceFeedExceptionsAbi, iRouterV3ErrorsAbi, ilpPriceFeedExceptionsAbi };
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -1,4 +1,4 @@
1
- declare const ierc20Abi: readonly [{
1
+ export declare const ierc20Abi: readonly [{
2
2
  readonly type: "function";
3
3
  readonly name: "allowance";
4
4
  readonly inputs: readonly [{
@@ -169,5 +169,3 @@ declare const ierc20Abi: readonly [{
169
169
  }];
170
170
  readonly anonymous: false;
171
171
  }];
172
-
173
- export { ierc20Abi };