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.cjs
CHANGED
|
@@ -55985,7 +55985,8 @@ var contractsRegistry_default = {
|
|
|
55985
55985
|
origin: {
|
|
55986
55986
|
armSteth: "0x85B78AcA6Deae198fBF201c82DAF6Ca21942acc6",
|
|
55987
55987
|
armStethZapper: "0x01F30B7358Ba51f637d1aa05D9b4A60f76DAD680",
|
|
55988
|
-
armEeth: "0xfB0A3CF9B019BFd8827443d131b235B3E0FC58d2"
|
|
55988
|
+
armEeth: "0xfB0A3CF9B019BFd8827443d131b235B3E0FC58d2",
|
|
55989
|
+
armUniversalZapper: "0xE11EDbd5AE4Fa434Af7f8D7F03Da1742996e7Ab2"
|
|
55989
55990
|
},
|
|
55990
55991
|
infinifi: {
|
|
55991
55992
|
gateway: "0x3f04b65Ddbd87f9CE0A2e7Eb24d80e7fb87625b5",
|
|
@@ -88836,7 +88837,7 @@ var simulateOrThrow = async (env2) => {
|
|
|
88836
88837
|
if (!payload.simulation) {
|
|
88837
88838
|
throw new Error(`Invalid simulation response: ${JSON.stringify(payload)}`);
|
|
88838
88839
|
}
|
|
88839
|
-
const { network_id, block_number, error_message, status, block_header } = payload.simulation;
|
|
88840
|
+
const { network_id, block_number, error_message, status, gas_used, block_header } = payload.simulation;
|
|
88840
88841
|
return {
|
|
88841
88842
|
result: status,
|
|
88842
88843
|
blockNumber: block_number,
|
|
@@ -88845,8 +88846,8 @@ var simulateOrThrow = async (env2) => {
|
|
|
88845
88846
|
baseFeePerGas: hexToNumber(block_header.baseFeePerGas),
|
|
88846
88847
|
gasLimit: hexToNumber(block_header.gasLimit),
|
|
88847
88848
|
timestamp: hexToNumber(block_header.timestamp),
|
|
88848
|
-
gasUsed:
|
|
88849
|
+
gasUsed: gas_used
|
|
88849
88850
|
};
|
|
88850
88851
|
};
|
|
88851
88852
|
|
|
88852
|
-
//# debugId=
|
|
88853
|
+
//# debugId=F623B040EFAB98FA64756E2164756E21
|