@gearbox-protocol/sdk 14.11.0-next.9 → 14.11.0

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 (180) hide show
  1. package/dist/cjs/common-utils/utils/index.js +0 -2
  2. package/dist/cjs/dev/index.js +1 -3
  3. package/dist/cjs/dev/isOutOfSyncError.js +3 -1
  4. package/dist/cjs/history/assembleOperations.js +6 -6
  5. package/dist/cjs/history/classifyMulticallOperations.js +25 -31
  6. package/dist/cjs/{preview/trace → history}/errors.js +26 -0
  7. package/dist/cjs/history/extractProtocolCalls.js +53 -0
  8. package/dist/cjs/{preview/trace → history}/extractTransfers.js +23 -11
  9. package/dist/cjs/{preview/trace → history}/findFacadeCalls.js +3 -3
  10. package/dist/cjs/history/index.js +2 -0
  11. package/dist/cjs/{preview/parse/types-facades.js → history/inner-operations.js} +2 -2
  12. package/dist/cjs/{preview/parse/types-adapters.js → history/internal-types.js} +2 -2
  13. package/dist/cjs/history/parseCreditAccountTransaction.js +6 -5
  14. package/dist/cjs/history/toLegacyOperation.js +2 -6
  15. package/dist/cjs/{common-utils/utils/trace.js → history/trace-utils.js} +5 -62
  16. package/dist/cjs/permissionless/bindings/pricefeeds/curve-twap.js +2 -2
  17. package/dist/cjs/plugins/adapters/contracts/AbstractAdapter.js +37 -25
  18. package/dist/cjs/plugins/adapters/contracts/AccountMigratorAdapterContract.js +0 -9
  19. package/dist/esm/common-utils/utils/index.js +0 -1
  20. package/dist/esm/dev/index.js +0 -1
  21. package/dist/esm/dev/isOutOfSyncError.js +3 -1
  22. package/dist/esm/history/assembleOperations.js +6 -8
  23. package/dist/esm/history/classifyMulticallOperations.js +23 -29
  24. package/dist/esm/{preview/trace → history}/errors.js +24 -0
  25. package/dist/esm/history/extractProtocolCalls.js +32 -0
  26. package/dist/esm/{preview/trace → history}/extractTransfers.js +23 -11
  27. package/dist/esm/{preview/trace → history}/findFacadeCalls.js +2 -4
  28. package/dist/esm/history/index.js +1 -0
  29. package/dist/esm/history/parseCreditAccountTransaction.js +4 -3
  30. package/dist/esm/history/toLegacyOperation.js +2 -6
  31. package/dist/esm/history/trace-utils.js +36 -0
  32. package/dist/esm/permissionless/bindings/pricefeeds/curve-twap.js +2 -2
  33. package/dist/esm/plugins/adapters/contracts/AbstractAdapter.js +38 -28
  34. package/dist/esm/plugins/adapters/contracts/AccountMigratorAdapterContract.js +0 -9
  35. package/dist/types/common-utils/utils/index.d.ts +0 -1
  36. package/dist/types/dev/index.d.ts +0 -1
  37. package/dist/types/history/assembleOperations.d.ts +6 -11
  38. package/dist/types/history/classifyMulticallOperations.d.ts +9 -21
  39. package/dist/types/{preview/trace → history}/errors.d.ts +10 -0
  40. package/dist/types/history/extractProtocolCalls.d.ts +8 -0
  41. package/dist/types/{preview/trace → history}/extractTransfers.d.ts +7 -15
  42. package/dist/types/{preview/trace → history}/findFacadeCalls.d.ts +2 -3
  43. package/dist/types/history/index.d.ts +1 -0
  44. package/dist/types/history/inner-operations.d.ts +57 -0
  45. package/dist/types/history/internal-types.d.ts +47 -0
  46. package/dist/types/history/mapOperations.d.ts +9 -7
  47. package/dist/types/history/trace-utils.d.ts +12 -0
  48. package/dist/types/history/types.d.ts +71 -22
  49. package/dist/types/plugins/adapters/contracts/AbstractAdapter.d.ts +17 -16
  50. package/dist/types/plugins/adapters/contracts/AccountMigratorAdapterContract.d.ts +1 -10
  51. package/dist/types/plugins/adapters/contracts/ConvexV1BaseRewardPoolAdapterContract.d.ts +1 -1
  52. package/dist/types/plugins/adapters/contracts/ConvexV1BoosterAdapterContract.d.ts +1 -1
  53. package/dist/types/plugins/adapters/contracts/Curve2AssetsAdapterContract.d.ts +1 -1
  54. package/dist/types/plugins/adapters/contracts/Curve3AssetsAdapterContract.d.ts +1 -1
  55. package/dist/types/plugins/adapters/contracts/Curve4AssetsAdapterContract.d.ts +1 -1
  56. package/dist/types/plugins/adapters/contracts/CurveV1AdapterDeposit.d.ts +1 -1
  57. package/dist/types/plugins/adapters/contracts/CurveV1AdapterStETHContract.d.ts +1 -1
  58. package/dist/types/plugins/adapters/contracts/CurveV1StableNGAdapterContract.d.ts +1 -1
  59. package/dist/types/plugins/adapters/contracts/DaiUsdsAdapterContract.d.ts +1 -1
  60. package/dist/types/plugins/adapters/contracts/ERC4626AdapterContract.d.ts +1 -1
  61. package/dist/types/plugins/adapters/contracts/ERC4626ReferralAdapterContract.d.ts +1 -1
  62. package/dist/types/plugins/adapters/contracts/LidoV1AdapterContract.d.ts +1 -1
  63. package/dist/types/plugins/adapters/contracts/MellowDVVAdapterContract.d.ts +1 -1
  64. package/dist/types/plugins/adapters/contracts/MellowERC4626VaultAdapterContract.d.ts +1 -1
  65. package/dist/types/plugins/adapters/contracts/UniswapV2AdapterContract.d.ts +1 -1
  66. package/dist/types/plugins/adapters/contracts/UniswapV4AdapterContract.d.ts +1 -1
  67. package/dist/types/plugins/adapters/contracts/WstETHV1AdapterContract.d.ts +1 -1
  68. package/dist/types/plugins/adapters/transferHelpers.d.ts +1 -1
  69. package/dist/types/plugins/adapters/types.d.ts +46 -8
  70. package/package.json +1 -6
  71. package/dist/cjs/dev/verifyTestnet.js +0 -124
  72. package/dist/cjs/plugins/adapters/transfers.js +0 -16
  73. package/dist/cjs/preview/index.js +0 -28
  74. package/dist/cjs/preview/package.json +0 -1
  75. package/dist/cjs/preview/parse/classifyInnerOperations.js +0 -92
  76. package/dist/cjs/preview/parse/errors.js +0 -47
  77. package/dist/cjs/preview/parse/extractExpectedBalanceChanges.js +0 -48
  78. package/dist/cjs/preview/parse/index.js +0 -34
  79. package/dist/cjs/preview/parse/parseFacadeOperationCalldata.js +0 -115
  80. package/dist/cjs/preview/parse/parseOperationCalldata.js +0 -46
  81. package/dist/cjs/preview/parse/parsePoolOperationCalldata.js +0 -77
  82. package/dist/cjs/preview/parse/types-pools.js +0 -16
  83. package/dist/cjs/preview/parse/types.js +0 -37
  84. package/dist/cjs/preview/prerequisites/AllowancePrerequisite.js +0 -78
  85. package/dist/cjs/preview/prerequisites/BalancePrerequisite.js +0 -77
  86. package/dist/cjs/preview/prerequisites/Prerequisite.js +0 -85
  87. package/dist/cjs/preview/prerequisites/buildPrerequisites.js +0 -187
  88. package/dist/cjs/preview/prerequisites/index.js +0 -34
  89. package/dist/cjs/preview/prerequisites/prepareAction.js +0 -48
  90. package/dist/cjs/preview/prerequisites/runPrerequisites.js +0 -71
  91. package/dist/cjs/preview/prerequisites/types.js +0 -16
  92. package/dist/cjs/preview/simulate/constants.js +0 -28
  93. package/dist/cjs/preview/simulate/errors.js +0 -98
  94. package/dist/cjs/preview/simulate/extractERC20Transfers.js +0 -47
  95. package/dist/cjs/preview/simulate/holders.js +0 -45
  96. package/dist/cjs/preview/simulate/index.js +0 -40
  97. package/dist/cjs/preview/simulate/simulateFacadeOperation.js +0 -30
  98. package/dist/cjs/preview/simulate/simulateOperation.js +0 -37
  99. package/dist/cjs/preview/simulate/simulatePoolOpMulticall.js +0 -155
  100. package/dist/cjs/preview/simulate/simulatePoolOpV1.js +0 -106
  101. package/dist/cjs/preview/simulate/simulatePoolOperation.js +0 -62
  102. package/dist/cjs/preview/simulate/types.js +0 -16
  103. package/dist/cjs/preview/trace/extractAdapterCallTraces.js +0 -58
  104. package/dist/cjs/preview/trace/index.js +0 -30
  105. package/dist/cjs/preview/trace/types.js +0 -16
  106. package/dist/esm/common-utils/utils/trace.js +0 -93
  107. package/dist/esm/dev/verifyTestnet.js +0 -98
  108. package/dist/esm/preview/index.js +0 -4
  109. package/dist/esm/preview/package.json +0 -1
  110. package/dist/esm/preview/parse/classifyInnerOperations.js +0 -68
  111. package/dist/esm/preview/parse/errors.js +0 -22
  112. package/dist/esm/preview/parse/extractExpectedBalanceChanges.js +0 -24
  113. package/dist/esm/preview/parse/index.js +0 -7
  114. package/dist/esm/preview/parse/parseFacadeOperationCalldata.js +0 -91
  115. package/dist/esm/preview/parse/parseOperationCalldata.js +0 -25
  116. package/dist/esm/preview/parse/parsePoolOperationCalldata.js +0 -53
  117. package/dist/esm/preview/parse/types-facades.js +0 -0
  118. package/dist/esm/preview/parse/types-pools.js +0 -0
  119. package/dist/esm/preview/parse/types.js +0 -9
  120. package/dist/esm/preview/prerequisites/AllowancePrerequisite.js +0 -57
  121. package/dist/esm/preview/prerequisites/BalancePrerequisite.js +0 -56
  122. package/dist/esm/preview/prerequisites/Prerequisite.js +0 -63
  123. package/dist/esm/preview/prerequisites/buildPrerequisites.js +0 -163
  124. package/dist/esm/preview/prerequisites/index.js +0 -7
  125. package/dist/esm/preview/prerequisites/prepareAction.js +0 -23
  126. package/dist/esm/preview/prerequisites/runPrerequisites.js +0 -47
  127. package/dist/esm/preview/prerequisites/types.js +0 -0
  128. package/dist/esm/preview/simulate/constants.js +0 -4
  129. package/dist/esm/preview/simulate/errors.js +0 -75
  130. package/dist/esm/preview/simulate/extractERC20Transfers.js +0 -23
  131. package/dist/esm/preview/simulate/holders.js +0 -21
  132. package/dist/esm/preview/simulate/index.js +0 -12
  133. package/dist/esm/preview/simulate/simulateFacadeOperation.js +0 -6
  134. package/dist/esm/preview/simulate/simulateOperation.js +0 -13
  135. package/dist/esm/preview/simulate/simulatePoolOpMulticall.js +0 -130
  136. package/dist/esm/preview/simulate/simulatePoolOpV1.js +0 -82
  137. package/dist/esm/preview/simulate/simulatePoolOperation.js +0 -41
  138. package/dist/esm/preview/simulate/types.js +0 -0
  139. package/dist/esm/preview/trace/extractAdapterCallTraces.js +0 -40
  140. package/dist/esm/preview/trace/index.js +0 -5
  141. package/dist/esm/preview/trace/types.js +0 -0
  142. package/dist/types/common-utils/utils/trace.d.ts +0 -73
  143. package/dist/types/dev/verifyTestnet.d.ts +0 -82
  144. package/dist/types/plugins/adapters/transfers.d.ts +0 -17
  145. package/dist/types/preview/index.d.ts +0 -4
  146. package/dist/types/preview/parse/classifyInnerOperations.d.ts +0 -21
  147. package/dist/types/preview/parse/errors.d.ts +0 -17
  148. package/dist/types/preview/parse/extractExpectedBalanceChanges.d.ts +0 -22
  149. package/dist/types/preview/parse/index.d.ts +0 -7
  150. package/dist/types/preview/parse/parseFacadeOperationCalldata.d.ts +0 -19
  151. package/dist/types/preview/parse/parseOperationCalldata.d.ts +0 -23
  152. package/dist/types/preview/parse/parsePoolOperationCalldata.d.ts +0 -17
  153. package/dist/types/preview/parse/types-adapters.d.ts +0 -69
  154. package/dist/types/preview/parse/types-facades.d.ts +0 -157
  155. package/dist/types/preview/parse/types-pools.d.ts +0 -55
  156. package/dist/types/preview/parse/types.d.ts +0 -44
  157. package/dist/types/preview/prerequisites/AllowancePrerequisite.d.ts +0 -24
  158. package/dist/types/preview/prerequisites/BalancePrerequisite.d.ts +0 -23
  159. package/dist/types/preview/prerequisites/Prerequisite.d.ts +0 -60
  160. package/dist/types/preview/prerequisites/buildPrerequisites.d.ts +0 -16
  161. package/dist/types/preview/prerequisites/index.d.ts +0 -7
  162. package/dist/types/preview/prerequisites/prepareAction.d.ts +0 -52
  163. package/dist/types/preview/prerequisites/runPrerequisites.d.ts +0 -12
  164. package/dist/types/preview/prerequisites/types.d.ts +0 -78
  165. package/dist/types/preview/simulate/constants.d.ts +0 -6
  166. package/dist/types/preview/simulate/errors.d.ts +0 -51
  167. package/dist/types/preview/simulate/extractERC20Transfers.d.ts +0 -11
  168. package/dist/types/preview/simulate/holders.d.ts +0 -7
  169. package/dist/types/preview/simulate/index.d.ts +0 -9
  170. package/dist/types/preview/simulate/simulateFacadeOperation.d.ts +0 -25
  171. package/dist/types/preview/simulate/simulateOperation.d.ts +0 -20
  172. package/dist/types/preview/simulate/simulatePoolOpMulticall.d.ts +0 -28
  173. package/dist/types/preview/simulate/simulatePoolOpV1.d.ts +0 -14
  174. package/dist/types/preview/simulate/simulatePoolOperation.d.ts +0 -8
  175. package/dist/types/preview/simulate/types.d.ts +0 -79
  176. package/dist/types/preview/trace/extractAdapterCallTraces.d.ts +0 -23
  177. package/dist/types/preview/trace/index.d.ts +0 -5
  178. package/dist/types/preview/trace/types.d.ts +0 -21
  179. /package/dist/esm/{plugins/adapters/transfers.js → history/inner-operations.js} +0 -0
  180. /package/dist/esm/{preview/parse/types-adapters.js → history/internal-types.js} +0 -0
@@ -1,130 +0,0 @@
1
- import { iPoolV310Abi } from "../../abi/310/generated.js";
2
- import { ierc20Abi } from "../../abi/iERC20.js";
3
- import { AddressMap } from "../../sdk/index.js";
4
- import { decodeSimulationError, PreviewSimulationError } from "./errors.js";
5
- import { watchedHolders } from "./holders.js";
6
- function previewRead(operation) {
7
- switch (operation.operation) {
8
- case "Deposit":
9
- return { functionName: "previewDeposit", amount: operation.assets };
10
- case "Mint":
11
- return { functionName: "previewMint", amount: operation.shares };
12
- case "Withdraw":
13
- return { functionName: "previewWithdraw", amount: operation.assets };
14
- case "Redeem":
15
- return { functionName: "previewRedeem", amount: operation.shares };
16
- }
17
- }
18
- async function simulatePoolOpMulticall(input, options = {}) {
19
- const { sdk, operation, wallet } = input;
20
- const { blockNumber } = options;
21
- const { underlying, pool } = operation;
22
- const holders = watchedHolders(operation, wallet);
23
- const tokens = [underlying, pool];
24
- const balanceCalls = holders.flatMap(
25
- (holder) => tokens.map((token) => ({ holder, token }))
26
- );
27
- const balanceContracts = balanceCalls.map(
28
- ({ holder, token }) => ({
29
- address: token,
30
- abi: ierc20Abi,
31
- functionName: "balanceOf",
32
- args: [holder]
33
- })
34
- );
35
- const { functionName, amount } = previewRead(operation);
36
- const previewContract = {
37
- address: pool,
38
- abi: iPoolV310Abi,
39
- functionName,
40
- args: [amount]
41
- };
42
- let results;
43
- try {
44
- results = await sdk.client.multicall({
45
- allowFailure: false,
46
- // `undefined` lets viem read at `latest`; `blockNumber` is only set for
47
- // testnet forks pinned to a specific block.
48
- blockNumber,
49
- contracts: [...balanceContracts, previewContract]
50
- });
51
- } catch (cause) {
52
- throw new PreviewSimulationError([
53
- {
54
- source: "multicall",
55
- detail: decodeSimulationError({
56
- error: cause instanceof Error ? cause : new Error(String(cause))
57
- })
58
- }
59
- ]);
60
- }
61
- const previewAmount = results[balanceContracts.length];
62
- const balances = new AddressMap();
63
- for (const [i, { holder, token }] of balanceCalls.entries()) {
64
- const tokenBalances = balances.get(holder) ?? new AddressMap();
65
- tokenBalances.upsert(token, results[i]);
66
- balances.upsert(holder, tokenBalances);
67
- }
68
- const before = (token, holder) => balances.get(holder)?.get(token) ?? 0n;
69
- return {
70
- balanceChanges: computePoolOpBalanceChanges(
71
- operation,
72
- wallet,
73
- previewAmount,
74
- before
75
- ),
76
- transfers: void 0
77
- };
78
- }
79
- function balanceLegs(operation, wallet, previewAmount) {
80
- const { underlying, pool, receiver } = operation;
81
- switch (operation.operation) {
82
- case "Deposit":
83
- return [
84
- { address: wallet, token: underlying, delta: -operation.assets },
85
- { address: receiver, token: pool, delta: previewAmount }
86
- ];
87
- case "Mint":
88
- return [
89
- { address: wallet, token: underlying, delta: -previewAmount },
90
- { address: receiver, token: pool, delta: operation.shares }
91
- ];
92
- case "Withdraw":
93
- return [
94
- { address: operation.owner, token: pool, delta: -previewAmount },
95
- { address: receiver, token: underlying, delta: operation.assets }
96
- ];
97
- case "Redeem":
98
- return [
99
- { address: operation.owner, token: pool, delta: -operation.shares },
100
- { address: receiver, token: underlying, delta: previewAmount }
101
- ];
102
- }
103
- }
104
- function computePoolOpBalanceChanges(operation, wallet, previewAmount, before) {
105
- const byAddress = new AddressMap();
106
- for (const { address, token, delta } of balanceLegs(
107
- operation,
108
- wallet,
109
- previewAmount
110
- )) {
111
- const beforeBalance = before(token, address);
112
- const change = {
113
- token,
114
- before: beforeBalance,
115
- after: beforeBalance + delta,
116
- delta
117
- };
118
- const existing = byAddress.get(address);
119
- if (existing) {
120
- existing.changes.push(change);
121
- } else {
122
- byAddress.upsert(address, { address, changes: [change] });
123
- }
124
- }
125
- return byAddress.values();
126
- }
127
- export {
128
- computePoolOpBalanceChanges,
129
- simulatePoolOpMulticall
130
- };
@@ -1,82 +0,0 @@
1
- import { simulateCalls } from "viem/actions";
2
- import { ierc20Abi } from "../../abi/iERC20.js";
3
- import { decodeSimulationError, PreviewSimulationError } from "./errors.js";
4
- import { extractERC20Transfers } from "./extractERC20Transfers.js";
5
- import { watchedHolders } from "./holders.js";
6
- async function simulatePoolOpV1(input, options = {}) {
7
- const { sdk, operation, to, calldata, wallet } = input;
8
- const { blockNumber } = options;
9
- const { underlying, pool } = operation;
10
- const holders = watchedHolders(operation, wallet);
11
- const tokens = [underlying, pool];
12
- const balanceOf = (token, holder) => ({
13
- to: token,
14
- abi: ierc20Abi,
15
- functionName: "balanceOf",
16
- args: [holder]
17
- });
18
- const balanceCalls = holders.flatMap(
19
- (holder) => tokens.map((token) => balanceOf(token, holder))
20
- );
21
- let results;
22
- try {
23
- ({ results } = await simulateCalls(sdk.client, {
24
- account: wallet,
25
- // `undefined` lets viem simulate at `latest`; `blockNumber` is only set
26
- // for testnet forks pinned to a specific block.
27
- blockNumber,
28
- calls: [...balanceCalls, { to, data: calldata }, ...balanceCalls]
29
- }));
30
- } catch (cause) {
31
- throw new PreviewSimulationError([
32
- {
33
- source: "eth_simulateV1",
34
- detail: decodeSimulationError({
35
- error: cause instanceof Error ? cause : new Error(String(cause))
36
- })
37
- }
38
- ]);
39
- }
40
- const sim = results;
41
- const txIndex = balanceCalls.length;
42
- const afterOffset = txIndex + 1;
43
- const txResult = sim[txIndex];
44
- if (!txResult || txResult.status === "failure") {
45
- throw new PreviewSimulationError([
46
- {
47
- source: "eth_simulateV1",
48
- detail: decodeSimulationError({
49
- error: txResult?.error,
50
- data: txResult?.data
51
- })
52
- }
53
- ]);
54
- }
55
- const balanceChanges = [];
56
- for (const [holderIndex, address] of holders.entries()) {
57
- const changes = [];
58
- for (const [tokenIndex, token] of tokens.entries()) {
59
- const slot = holderIndex * tokens.length + tokenIndex;
60
- const before = readBalance(sim[slot]);
61
- const after = readBalance(sim[afterOffset + slot]);
62
- const delta = after - before;
63
- const magnitude = delta >= 0n ? delta : -delta;
64
- if (magnitude > 1n) {
65
- changes.push({ token, before, after, delta });
66
- }
67
- }
68
- if (changes.length > 0) {
69
- balanceChanges.push({ address, changes });
70
- }
71
- }
72
- return {
73
- transfers: extractERC20Transfers(txResult.logs ?? [], holders),
74
- balanceChanges
75
- };
76
- }
77
- function readBalance(result) {
78
- return result?.status === "success" ? result.result : 0n;
79
- }
80
- export {
81
- simulatePoolOpV1
82
- };
@@ -1,41 +0,0 @@
1
- import { ETH_SIMULATE_V1_NETWORKS } from "./constants.js";
2
- import {
3
- asPreviewSimulationError,
4
- combinePreviewSimulationErrors
5
- } from "./errors.js";
6
- import { simulatePoolOpMulticall } from "./simulatePoolOpMulticall.js";
7
- import { simulatePoolOpV1 } from "./simulatePoolOpV1.js";
8
- async function simulatePoolOperation(input, options = {}) {
9
- const { sdk } = input;
10
- const { logger } = options;
11
- const useSimulateV1 = options.useSimulateV1 ?? ETH_SIMULATE_V1_NETWORKS.has(sdk.networkType);
12
- logger?.debug(
13
- { wallet: input.wallet, to: input.to },
14
- "simulating pool operation"
15
- );
16
- const [v1, multicall] = await Promise.allSettled([
17
- useSimulateV1 ? simulatePoolOpV1(input, options) : void 0,
18
- simulatePoolOpMulticall(input, options)
19
- ]);
20
- if (v1.status === "fulfilled" && v1.value) {
21
- return { status: "success", ...v1.value };
22
- }
23
- if (multicall.status === "fulfilled") {
24
- if (v1.status === "rejected") {
25
- logger?.debug(
26
- asPreviewSimulationError(v1.reason, "eth_simulateV1"),
27
- "eth_simulateV1 flow failed; falling back to multicall result"
28
- );
29
- }
30
- return { status: "success", ...multicall.value };
31
- }
32
- const error = combinePreviewSimulationErrors(
33
- v1.status === "rejected" ? asPreviewSimulationError(v1.reason, "eth_simulateV1") : void 0,
34
- asPreviewSimulationError(multicall.reason, "multicall")
35
- );
36
- logger?.error(error, "pool operation simulation failed");
37
- return { status: "failure", error };
38
- }
39
- export {
40
- simulatePoolOperation
41
- };
File without changes
@@ -1,40 +0,0 @@
1
- import {
2
- decodeAbiParameters,
3
- isAddressEqual,
4
- toFunctionSelector
5
- } from "viem";
6
- import {
7
- resolveProtocolCall
8
- } from "../../common-utils/utils/trace.js";
9
- const WITHDRAW_PHANTOM_TOKEN_SELECTOR = toFunctionSelector(
10
- "withdrawPhantomToken(address,uint256)"
11
- );
12
- const GET_PHANTOM_TOKEN_INFO_SELECTOR = toFunctionSelector(
13
- "getPhantomTokenInfo()"
14
- );
15
- function isSynthesizedPhantomWithdrawal(siblings, index) {
16
- const node = siblings[index];
17
- if (node.type !== "CALL" || node.input.slice(0, 10).toLowerCase() !== WITHDRAW_PHANTOM_TOKEN_SELECTOR) {
18
- return false;
19
- }
20
- const [token] = decodeAbiParameters(
21
- [{ type: "address" }, { type: "uint256" }],
22
- `0x${node.input.slice(10)}`
23
- );
24
- for (let i = 0; i < index; i++) {
25
- const sib = siblings[i];
26
- if (sib.type === "STATICCALL" && sib.input.slice(0, 10).toLowerCase() === GET_PHANTOM_TOKEN_INFO_SELECTOR && isAddressEqual(sib.to, token)) {
27
- return true;
28
- }
29
- }
30
- return false;
31
- }
32
- function extractAdapterCallTraces(facadeTrace) {
33
- const subtraces = facadeTrace.calls ?? [];
34
- return subtraces.filter(
35
- (sub, index) => resolveProtocolCall(sub) !== void 0 && !isSynthesizedPhantomWithdrawal(subtraces, index)
36
- );
37
- }
38
- export {
39
- extractAdapterCallTraces
40
- };
@@ -1,5 +0,0 @@
1
- export * from "./errors.js";
2
- export * from "./extractAdapterCallTraces.js";
3
- export * from "./extractTransfers.js";
4
- export * from "./findFacadeCalls.js";
5
- export * from "./types.js";
File without changes
@@ -1,73 +0,0 @@
1
- import { type Address, type Hex } from "viem";
2
- /**
3
- * A single frame from Ethereum's `debug_traceTransaction` callTracer output.
4
- * Recursive: each frame may contain nested sub-calls.
5
- */
6
- export interface CallTrace {
7
- from: Address;
8
- to: Address;
9
- input: Hex;
10
- output: Hex;
11
- value: Hex;
12
- /** "CALL", "DELEGATECALL", "STATICCALL", "CREATE", etc. */
13
- type: string;
14
- /** Present when the call reverted (e.g. "execution reverted"). */
15
- error?: string;
16
- /** ABI-encoded revert data, if available. */
17
- revertReason?: Hex;
18
- calls?: CallTrace[];
19
- }
20
- /**
21
- * Selector of `CreditManagerV3.execute(bytes)` (`0x09c5eabe`).
22
- *
23
- * This is the authoritative marker of an adapter performing an external
24
- * protocol call: the adapter calls the credit manager's `execute(bytes)`, which
25
- * forwards the calldata to the credit account, which in turn CALLs the target
26
- * (protocol) contract. Adapter approvals use a different selector
27
- * (`execute(address,bytes)` on the credit account), so matching on this
28
- * selector isolates the real protocol call.
29
- */
30
- export declare const EXECUTE_BYTES_SELECTOR: "0x09c5eabe";
31
- /**
32
- * Finds the shallowest non-reverted `CreditManager.execute(bytes)` call in a
33
- * trace subtree (breadth-first), or `undefined` if none exists.
34
- *
35
- * "Shallowest" matters for account migration: a migrate adapter nests the
36
- * entire target `openCreditAccount` multicall - including that account's own
37
- * `execute(bytes)` calls - inside its subtree. The shallowest match is the
38
- * adapter's own protocol call, not a nested one.
39
- */
40
- export declare function findExecuteBytes(node: CallTrace): CallTrace | undefined;
41
- /**
42
- * Finds the first non-reverted CALL in a subtree whose `input` exactly matches
43
- * `input` (case-insensitive). Used to locate the leaf CALL to the target
44
- * contract: `execute(bytes)` forwards the calldata unchanged through the credit
45
- * account proxy DELEGATECALL down to the final CALL to the protocol contract.
46
- */
47
- export declare function findCallWithInput(node: CallTrace, input: Hex): CallTrace | undefined;
48
- /**
49
- * Resolves the external protocol call performed by an adapter-level call trace.
50
- *
51
- * Locates the shallowest `CreditManager.execute(bytes)`, decodes the forwarded
52
- * calldata, then finds the leaf CALL whose input matches that calldata to
53
- * recover the target (protocol) contract address. Returns `undefined` when the
54
- * subtree does not actually reach an external protocol CALL (e.g. the
55
- * facade-internal `depositPhantomToken` / `withdrawPhantomToken` accounting
56
- * calls, which forward calldata but make no external CALL).
57
- *
58
- * @param node - direct child node of the upper-level facade call trace
59
- */
60
- export declare function resolveProtocolCall(node: CallTrace): {
61
- contract: Address;
62
- calldata: Hex;
63
- } | undefined;
64
- /**
65
- * Finds the first non-reverted CALL to `target` anywhere in a trace subtree.
66
- */
67
- export declare function findCallTo(node: CallTrace, target: Address): CallTrace | undefined;
68
- /**
69
- * DFS walk of the call trace tree, collecting non-reverted CALL entries
70
- * to the given address.
71
- * Does not recurse into children of matched nodes
72
- */
73
- export declare function collectTraces(node: CallTrace, target: Address): CallTrace[];
@@ -1,82 +0,0 @@
1
- import type { Address, PublicClient } from "viem";
2
- /**
3
- * Address is stable, contract deployed via create2
4
- */
5
- export declare const ONCHAIN_EXECUTION_ID_ADDRESS: Address;
6
- /**
7
- * This contract is deployed on every Gearbox testnet and contains
8
- * execution id and alias of the testnet
9
- */
10
- export declare const iOnchainExecutionIdAbi: readonly [{
11
- readonly type: "function";
12
- readonly name: "deployer";
13
- readonly inputs: readonly [];
14
- readonly outputs: readonly [{
15
- readonly name: "";
16
- readonly type: "string";
17
- readonly internalType: "string";
18
- }];
19
- readonly stateMutability: "view";
20
- }, {
21
- readonly type: "function";
22
- readonly name: "executionId";
23
- readonly inputs: readonly [];
24
- readonly outputs: readonly [{
25
- readonly name: "";
26
- readonly type: "string";
27
- readonly internalType: "string";
28
- }];
29
- readonly stateMutability: "view";
30
- }, {
31
- readonly type: "function";
32
- readonly name: "forkAlias";
33
- readonly inputs: readonly [];
34
- readonly outputs: readonly [{
35
- readonly name: "";
36
- readonly type: "string";
37
- readonly internalType: "string";
38
- }];
39
- readonly stateMutability: "view";
40
- }, {
41
- readonly type: "function";
42
- readonly name: "info";
43
- readonly inputs: readonly [];
44
- readonly outputs: readonly [{
45
- readonly name: "";
46
- readonly type: "tuple";
47
- readonly internalType: "struct ExecutionId.Info";
48
- readonly components: readonly [{
49
- readonly name: "deployer";
50
- readonly type: "string";
51
- readonly internalType: "string";
52
- }, {
53
- readonly name: "executionId";
54
- readonly type: "string";
55
- readonly internalType: "string";
56
- }, {
57
- readonly name: "forkAlias";
58
- readonly type: "string";
59
- readonly internalType: "string";
60
- }];
61
- }];
62
- readonly stateMutability: "view";
63
- }];
64
- export type VerifyTestnetParams = {
65
- executionId: string;
66
- } | {
67
- alias: string;
68
- } | {
69
- executionId: string;
70
- alias: string;
71
- };
72
- /**
73
- * Tries to read the contract that is deployed on every Gearbox testnet
74
- * and verify that we're on expected testnet.
75
- *
76
- * Used to check that wallet is using correct RPC for the testnet.
77
- *
78
- * @param client - Public client
79
- * @param expected - Expected tesnet alias or execution id
80
- * @returns True if we're on expected testnet
81
- */
82
- export declare function verifyTestnet(client: PublicClient, expected: VerifyTestnetParams): Promise<boolean>;
@@ -1,17 +0,0 @@
1
- import type { Address } from "viem";
2
- /**
3
- * A single ERC-20 Transfer event captured between Execute boundaries.
4
- *
5
- * Internal to `plugins/adapters` (kept here so {@link toNetTransfers} stays
6
- * typed) and intentionally **not** re-exported from the package barrel: the
7
- * canonical, public `TokenTransfer` lives in the `preview` module. The two are
8
- * structurally identical, so values flow between the modules without casts.
9
- *
10
- * @deprecated Will be deprecated when we get rid of classifyLegacyOperation
11
- */
12
- export interface TokenTransfer {
13
- token: Address;
14
- amount: bigint;
15
- from: Address;
16
- to: Address;
17
- }
@@ -1,4 +0,0 @@
1
- export * from "./parse/index.js";
2
- export * from "./prerequisites/index.js";
3
- export * from "./simulate/index.js";
4
- export * from "./trace/index.js";
@@ -1,21 +0,0 @@
1
- import type { Address } from "viem";
2
- import type { OnchainSDK, ParsedCallV2 } from "../../sdk/index.js";
3
- import type { InnerOperation } from "./types.js";
4
- export interface ClassifyInnerOperationsProps {
5
- sdk: OnchainSDK;
6
- /** Underlying token of the credit manager, used for debt operations. */
7
- underlying: Address;
8
- }
9
- /**
10
- * Calldata-only counterpart of the SDK's `classifyMulticallOperations`.
11
- *
12
- * Maps each inner multicall entry to an {@link InnerOperation}:
13
- * - adapter and unknown targets become a pure-descriptor `Execute`
14
- * {@link AdapterOperation};
15
- * - credit-facade self-calls map to the matching inner facade operation.
16
- *
17
- * Raw calldata has no execution trace, so the trace-derived adapter data
18
- * (`protocol`, `transfers`) and `legacy` are intentionally absent; they are only
19
- * recovered by trace-based flows (history, facade simulation).
20
- */
21
- export declare function classifyInnerOperations(calls: ParsedCallV2[], props: ClassifyInnerOperationsProps): InnerOperation[];
@@ -1,17 +0,0 @@
1
- import type { Address } from "viem";
2
- /**
3
- * Thrown when the target of a transaction is neither a known Gearbox pool nor a
4
- * credit facade.
5
- */
6
- export declare class UnsupportedTargetError extends Error {
7
- readonly target: Address;
8
- constructor(target: Address);
9
- }
10
- /**
11
- * Thrown when a pool call uses a function other than ERC4626 `deposit`/`redeem`.
12
- */
13
- export declare class UnsupportedPoolFunctionError extends Error {
14
- readonly pool: Address;
15
- readonly functionName: string;
16
- constructor(pool: Address, functionName: string);
17
- }
@@ -1,22 +0,0 @@
1
- import type { ParsedCallV2 } from "../../sdk/index.js";
2
- import type { ExpectedBalanceChange } from "./types.js";
3
- /**
4
- * Recovers the potential balance changes declared by a router-generated
5
- * `storeExpectedBalances`/`compareBalances` pair inside a credit-facade
6
- * multicall.
7
- *
8
- * The detection is intentionally limited to the router shape:
9
- * - `onDemandPriceUpdates` calls are dropped first (they may only appear at the
10
- * front of a multicall);
11
- * - the remaining calls must start with `storeExpectedBalances` and end with
12
- * `compareBalances`.
13
- *
14
- * When the multicall does not match this shape, `undefined` is returned. On a
15
- * match, the `BalanceDelta[]` argument of `storeExpectedBalances` is decoded
16
- * into {@link ExpectedBalanceChange}[] (the `amount` is the signed `int256`
17
- * delta and may be negative).
18
- *
19
- * @param innerCalls - Raw (already-decoded) inner multicall calls.
20
- * @returns The declared balance changes, or `undefined` when not router-shaped.
21
- */
22
- export declare function extractExpectedBalanceChanges(innerCalls: ParsedCallV2[]): ExpectedBalanceChange[] | undefined;
@@ -1,7 +0,0 @@
1
- export * from "./classifyInnerOperations.js";
2
- export * from "./errors.js";
3
- export * from "./extractExpectedBalanceChanges.js";
4
- export * from "./parseFacadeOperationCalldata.js";
5
- export * from "./parseOperationCalldata.js";
6
- export * from "./parsePoolOperationCalldata.js";
7
- export * from "./types.js";
@@ -1,19 +0,0 @@
1
- import { type Hex } from "viem";
2
- import type { CreditFacadeV310Contract, OnchainSDK } from "../../sdk/index.js";
3
- import type { OuterFacadeOperation } from "./types.js";
4
- export interface ParseFacadeOperationCalldataProps {
5
- sdk: OnchainSDK;
6
- /** Resolved credit facade contract for the transaction target. */
7
- facade: CreditFacadeV310Contract;
8
- calldata: Hex;
9
- }
10
- /**
11
- * Decodes a credit-facade entry-point call into the matching
12
- * {@link OuterFacadeOperation}.
13
- *
14
- * Transaction-level metadata (`txHash`, `blockNumber`, `timestamp`) is not part
15
- * of the base `preview` operation: those values are only known once the
16
- * transaction is mined and are added in `history` mode. `creditAccount` is
17
- * `zeroAddress` for `openCreditAccount` (the address is assigned on-chain).
18
- */
19
- export declare function parseFacadeOperationCalldata(props: ParseFacadeOperationCalldataProps): OuterFacadeOperation;
@@ -1,23 +0,0 @@
1
- import type { Address, Hex } from "viem";
2
- import { type PluginsMap } from "../../sdk/index.js";
3
- import type { Operation, SdkWithAdapters } from "./types.js";
4
- export interface ParseOperationCalldataInput<P extends PluginsMap = PluginsMap> {
5
- /**
6
- * Already-attached SDK; chain, RPC and block are baked in at attach time.
7
- * Must be created with the adapters plugin (enforced at compile time) so
8
- * adapter contracts resolve during multicall classification.
9
- */
10
- sdk: SdkWithAdapters<P>;
11
- to: Address;
12
- calldata: Hex;
13
- /** Transaction sender, contextual only. */
14
- sender: Address;
15
- }
16
- /**
17
- * Decodes raw operation calldata into an {@link Operation}.
18
- *
19
- * Routes by the resolved contract at `to`: a pool yields a deposit/redeem
20
- * operation, a credit facade yields one facade operation. Anything else throws
21
- * {@link UnsupportedTargetError}.
22
- */
23
- export declare function parseOperationCalldata<P extends PluginsMap>(input: ParseOperationCalldataInput<P>): Operation;
@@ -1,17 +0,0 @@
1
- import type { Hex } from "viem";
2
- import type { OnchainSDK, PoolV310Contract } from "../../sdk/index.js";
3
- import type { PoolOperation } from "./types.js";
4
- export interface ParsePoolOperationCalldataProps {
5
- sdk: OnchainSDK;
6
- /** Resolved pool contract for the transaction target. */
7
- pool: PoolV310Contract;
8
- calldata: Hex;
9
- }
10
- /**
11
- * Decodes ERC4626 pool calldata into a {@link PoolOperation}. Supports every
12
- * deposit/mint/withdraw/redeem variant of `IPoolV3` (and the `IERC4626` base it
13
- * extends): `deposit`/`depositWithReferral`, `mint`/`mintWithReferral`,
14
- * `withdraw` and `redeem`. Any other selector throws
15
- * {@link UnsupportedPoolFunctionError}.
16
- */
17
- export declare function parsePoolOperationCalldata(props: ParsePoolOperationCalldataProps): PoolOperation;