@gearbox-protocol/sdk 12.5.1 → 12.5.2
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.
|
@@ -115,7 +115,8 @@ class BytecodeRepositoryContract extends import_sdk.BaseContract {
|
|
|
115
115
|
// BigInt(this.client.chain!.id!),
|
|
116
116
|
txHash: e.transactionHash,
|
|
117
117
|
blockNumber: Number(e.blockNumber),
|
|
118
|
-
bytecodeHash: e.args.bytecodeHash
|
|
118
|
+
bytecodeHash: e.args.bytecodeHash,
|
|
119
|
+
constructorParams: e.args.constructorParams
|
|
119
120
|
});
|
|
120
121
|
}
|
|
121
122
|
return result;
|
|
@@ -98,7 +98,8 @@ class BytecodeRepositoryContract extends BaseContract {
|
|
|
98
98
|
// BigInt(this.client.chain!.id!),
|
|
99
99
|
txHash: e.transactionHash,
|
|
100
100
|
blockNumber: Number(e.blockNumber),
|
|
101
|
-
bytecodeHash: e.args.bytecodeHash
|
|
101
|
+
bytecodeHash: e.args.bytecodeHash,
|
|
102
|
+
constructorParams: e.args.constructorParams
|
|
102
103
|
});
|
|
103
104
|
}
|
|
104
105
|
return result;
|