We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MSG_TO_L1.to_address is defined as FELT
starknet-specs/api/starknet_api_openrpc.json
Line 2934 in e5ce8c6
Line 1303 in e5ce8c6
But "to_address" is essentially an Eth address which normally contain a leading zeroes when needed.
For example, the receipt of "0x06b7f4ac059de44c9c9d9fc6ddbabe35424e3fe35b97403de41f39a63667ff9b" tx contain a message to an address with a leading zero: https://starkscan.co/tx/0x06b7f4ac059de44c9c9d9fc6ddbabe35424e3fe35b97403de41f39a63667ff9b#messagelogs
Getting the receipt of this tx might cause an error when validating against the regex as mentioned here: software-mansion/starknet.py#1423
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
MSG_TO_L1.to_address is defined as FELT
starknet-specs/api/starknet_api_openrpc.json
Line 2934 in e5ce8c6
Which is being checked against the following regex:
starknet-specs/api/starknet_api_openrpc.json
Line 1303 in e5ce8c6
But "to_address" is essentially an Eth address which normally contain a leading zeroes when needed.
For example, the receipt of "0x06b7f4ac059de44c9c9d9fc6ddbabe35424e3fe35b97403de41f39a63667ff9b" tx contain a message to an address with a leading zero:
https://starkscan.co/tx/0x06b7f4ac059de44c9c9d9fc6ddbabe35424e3fe35b97403de41f39a63667ff9b#messagelogs
Getting the receipt of this tx might cause an error when validating against the regex as mentioned here:
software-mansion/starknet.py#1423
The text was updated successfully, but these errors were encountered: