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.js
CHANGED
|
@@ -1638,7 +1638,7 @@ var validateStruct = (parameter, input, structs) => {
|
|
|
1638
1638
|
if (input.type === "core::starknet::eth_address::EthAddress") {
|
|
1639
1639
|
assert(
|
|
1640
1640
|
typeof parameter !== "object",
|
|
1641
|
-
`
|
|
1641
|
+
`EthAddress type is waiting a BigNumberish. Got ${parameter}`
|
|
1642
1642
|
);
|
|
1643
1643
|
const param = BigInt(parameter.toString(10));
|
|
1644
1644
|
assert(
|