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

CCCP-476, feat: support core #169

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ You should prepare RPC endpoints for the following blockchain networks. There ar
- [Base](https://docs.base.org/tools/node-providers/)
- [Arbitrum](https://docs.arbitrum.io/node-running/node-providers)
- [Bitcoin](https://bitcoin.org/en/full-node)
- [Core](https://docs.coredao.org/docs/Dev-Guide/rpc-list)

You should also prepare an EVM account that will act as your relayer account. This account should have enough balance
for transaction fees used in operations.
Expand Down
12 changes: 11 additions & 1 deletion configs/config.mainnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,20 @@ evm_providers:
eip1559: true
socket_address: "0xac1552e30857A814a225BAa81145bcB071B46DDd"
authority_address: "0xA069a57426Cd4c53925c1847Bec01aAB832A5118"
- name: "core"
id: 1116
provider: "<YOUR_CORE_RPC_ENDPOINT>"
call_interval: 3000
block_confirmations: 3
is_relay_target: false
eip1559: false
min_gas_price: 30000000000
socket_address: "0x4C7a44F3FB37A53F33D3fe3cCdE97A444F105239"
authority_address: "0xA069a57426Cd4c53925c1847Bec01aAB832A5118"

handler_configs:
- handler_type: Socket
watch_list: [3068, 1, 56, 137, 8453, 42161]
watch_list: [3068, 1, 56, 137, 8453, 42161, 1116]
- handler_type: Roundup
watch_list: [3068]

Expand Down