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: new version of relayer #189

Merged
merged 22 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5e42c41
feat: added native fee in structures (#69)
frolvanya Oct 15, 2024
91c51c1
feat: claim native fee (#70)
frolvanya Oct 17, 2024
4786123
chore: updated omni-types (#92)
frolvanya Oct 23, 2024
ba153c2
feat: wait for eth light client (#71)
frolvanya Oct 30, 2024
268a57e
feat: scratch implementation of fee estimation (#81)
frolvanya Nov 7, 2024
26e5414
feat: support of multiple chains (#146)
frolvanya Dec 6, 2024
4db8424
feat: solana support (#153)
frolvanya Dec 23, 2024
cf237bc
feat: implemented fee check (#172)
frolvanya Jan 14, 2025
69ac95a
chore: synced changes with main
frolvanya Jan 15, 2025
9a52174
Merge branch 'main' into relayer
frolvanya Jan 15, 2025
4126ec0
chore: fmt
frolvanya Jan 15, 2025
4bd6867
chore: added relayer to clippy makefile
frolvanya Jan 15, 2025
92e2adb
feat: constructed persistent account keys from instruction (#191)
frolvanya Jan 15, 2025
5571aef
chore: updated mainnet example config
frolvanya Jan 16, 2025
abce91a
chore: removed `eth.rs` that was pulled from main during merge
frolvanya Jan 16, 2025
72b12cc
refactor: simplify extraction of evm config
frolvanya Jan 16, 2025
ee4d1ee
feat: added an option to provide solana credentials using path
frolvanya Jan 16, 2025
75dfac3
chore: updated testnet `api_key` replacement
frolvanya Jan 16, 2025
94c0c5d
chore: renamed `RPC_API_KEY` to more specific `INFURA_API_KEY`
frolvanya Jan 16, 2025
0bae30a
feat: improved the process of getting private keys from file
frolvanya Jan 16, 2025
4cb56bf
chore: removed unnecessary `Result`
frolvanya Jan 16, 2025
26d1a25
chore: updated omni-types version
frolvanya Jan 17, 2025
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
.DS_Store
**/target
**/config.toml
**/.env
.history
node_modules
near/res/mock_token.wasm
near/res/mock_prover.wasm
near/res/omni_tests.wasm
near/res/omni_tests.wasm
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUSTFLAGS = -C link-arg=-s
NEAR_MANIFEST = ./near/Cargo.toml
OMNI_RELAYER_MANIFEST = ./omni-relayer/Cargo.toml

clippy: clippy-near #clippy-relayer
clippy: clippy-near clippy-omni-relayer

clippy-near: rust-build-token
cargo clippy --manifest-path $(NEAR_MANIFEST) -- $(LINT_OPTIONS)
Expand Down
16 changes: 16 additions & 0 deletions omni-relayer/.example-env
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
RUST_LOG=info

# It's used for near-lake-framework
AWS_ACCESS_KEY_ID=...
AWS_SECRET_ACCESS_KEY=...

NEAR_ACCOUNT_ID=...
NEAR_PRIVATE_KEY=...

INFURA_API_KEY=...
ETH_PRIVATE_KEY=...
BASE_PRIVATE_KEY=...
ARB_PRIVATE_KEY=...

# Note that solana private key must be encoded to bs58 string in order to use it
SOLANA_PRIVATE_KEY=...
Loading
Loading