Skip to content
New issue

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

feat: Implement eth_newBlockFilter method #169

Open
Boreas09 opened this issue Jul 30, 2024 · 1 comment
Open

feat: Implement eth_newBlockFilter method #169

Boreas09 opened this issue Jul 30, 2024 · 1 comment
Assignees

Comments

@Boreas09
Copy link
Member

Boreas09 commented Jul 30, 2024

Creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call eth_getFilterChanges.

INFURA

Filter IDs will be valid for up to fifteen minutes, and can polled by any connection using the same YOUR-API-KEY.

Parameters :

None.

Returns :

filter ID: A hexadecimal denoting the newly created filter ID

Request :

curl https://mainnet.infura.io/v3/YOUR-API-KEY \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"eth_newBlockFilter","params":[],"id":1}'

Response :

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x8144114ddff0b3be57ad6a848ee4fe4a44cdda667055"
}

DO NOT FORGET TO UPDATE methodsStatus.md (set this method as finished)

/rosettanet/docs/methodsStatus.md

methodsStatus.md

@Boreas09
Copy link
Member Author

Boreas09 commented Sep 3, 2024

Check apibara for filter methods

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant