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
execution-apis/src/schemas/block.yaml
Lines 94 to 103 in 0c18fb0
This Block object says that it contains TransactionInfo which contains fields like "from" and "hash" as required.
However, in the deployed api interface page: https://ethereum.github.io/execution-apis/api-documentation/, say under eth_getBlockByNumber the "FullTransactions" are of enum type "SignedTransaction" and do not contain the those fields.
eth_getBlockByNumber
When testing the endpoint, say with:
curl -X POST $NODE_URL --data '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["0x119f996", true],"id":1}' | jq
sample response: http://jsonblob.com/1173956359015489536
We see that these fields are available.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
execution-apis/src/schemas/block.yaml
Lines 94 to 103 in 0c18fb0
This Block object says that it contains TransactionInfo which contains fields like "from" and "hash" as required.
However, in the deployed api interface page: https://ethereum.github.io/execution-apis/api-documentation/, say under
eth_getBlockByNumber
the "FullTransactions" are of enum type "SignedTransaction" and do not contain the those fields.When testing the endpoint, say with:
sample request
sample response: http://jsonblob.com/1173956359015489536
We see that these fields are available.
The text was updated successfully, but these errors were encountered: