damm-sdk 1.2.24 → 1.2.26
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/index.js
CHANGED
|
@@ -53567,7 +53567,8 @@ var contractsRegistry_default = {
|
|
|
53567
53567
|
origin: {
|
|
53568
53568
|
armSteth: "0x85B78AcA6Deae198fBF201c82DAF6Ca21942acc6",
|
|
53569
53569
|
armStethZapper: "0x01F30B7358Ba51f637d1aa05D9b4A60f76DAD680",
|
|
53570
|
-
armEeth: "0xfB0A3CF9B019BFd8827443d131b235B3E0FC58d2"
|
|
53570
|
+
armEeth: "0xfB0A3CF9B019BFd8827443d131b235B3E0FC58d2",
|
|
53571
|
+
armUniversalZapper: "0xE11EDbd5AE4Fa434Af7f8D7F03Da1742996e7Ab2"
|
|
53571
53572
|
},
|
|
53572
53573
|
infinifi: {
|
|
53573
53574
|
gateway: "0x3f04b65Ddbd87f9CE0A2e7Eb24d80e7fb87625b5",
|
|
@@ -86430,7 +86431,7 @@ var simulateOrThrow = async (env2) => {
|
|
|
86430
86431
|
if (!payload.simulation) {
|
|
86431
86432
|
throw new Error(`Invalid simulation response: ${JSON.stringify(payload)}`);
|
|
86432
86433
|
}
|
|
86433
|
-
const { network_id, block_number, error_message, status, block_header } = payload.simulation;
|
|
86434
|
+
const { network_id, block_number, error_message, status, gas_used, block_header } = payload.simulation;
|
|
86434
86435
|
return {
|
|
86435
86436
|
result: status,
|
|
86436
86437
|
blockNumber: block_number,
|
|
@@ -86439,7 +86440,7 @@ var simulateOrThrow = async (env2) => {
|
|
|
86439
86440
|
baseFeePerGas: hexToNumber(block_header.baseFeePerGas),
|
|
86440
86441
|
gasLimit: hexToNumber(block_header.gasLimit),
|
|
86441
86442
|
timestamp: hexToNumber(block_header.timestamp),
|
|
86442
|
-
gasUsed:
|
|
86443
|
+
gasUsed: gas_used
|
|
86443
86444
|
};
|
|
86444
86445
|
};
|
|
86445
86446
|
export {
|
|
@@ -86661,4 +86662,4 @@ export {
|
|
|
86661
86662
|
aave_pool_abi_default as AaveL1PoolAbi
|
|
86662
86663
|
};
|
|
86663
86664
|
|
|
86664
|
-
//# debugId=
|
|
86665
|
+
//# debugId=3E36102096C9F9E564756E2164756E21
|