starknet 5.24.2 → 5.24.4
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/CHANGELOG.md +12 -0
- package/dist/index.d.ts +37 -34
- package/dist/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1540,7 +1540,7 @@ var validateStruct = (parameter, input, structs) => {
|
|
|
1540
1540
|
if (input.type === "core::starknet::eth_address::EthAddress") {
|
|
1541
1541
|
assert(
|
|
1542
1542
|
typeof parameter !== "object",
|
|
1543
|
-
`
|
|
1543
|
+
`EthAddress type is waiting a BigNumberish. Got ${parameter}`
|
|
1544
1544
|
);
|
|
1545
1545
|
const param = BigInt(parameter.toString(10));
|
|
1546
1546
|
assert(
|