https://github.com/kratos-te/relayer
Transaction Relayer on Solana Node
https://github.com/kratos-te/relayer
forwarder relayer solana transaction-relayer-service
Last synced: 2 months ago
JSON representation
Transaction Relayer on Solana Node
- Host: GitHub
- URL: https://github.com/kratos-te/relayer
- Owner: kratos-te
- License: mit
- Created: 2024-12-04T07:27:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-12T09:26:10.000Z (over 1 year ago)
- Last Synced: 2025-04-02T10:44:45.293Z (over 1 year ago)
- Topics: forwarder, relayer, solana, transaction-relayer-service
- Language: Rust
- Homepage:
- Size: 157 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Running a Relayer
## Setup
This relayer requires Rust and solana development environment.
Refer jito instruction.
https://jito-foundation.gitbook.io/mev/jito-relayer/running-a-relayer until Section "RPC Server" for setup instructions.
--> Create a new folder (e.g. "explorer-relayer") and add your validator-node authentication files:
public.pem, private.pem, keypair.json
## Download project
Run this command to download explorer relayer.
git clone https://github.com/Explorer/relayer.git
cd relayer
cargo build
## Run
-------------------------------------------------------- Run directly in your relayer folder(recommend for non-familar) -----------------------------------------------
You can run the relayer directly in the relayer folder.
follow this instruction.
cd relayer
cargo run -- --keypair-path ../explorer-relayer/keypair.json \
--signing-key-pem-path ../explorer-relayer/private.pem \
--verifying-key-pem-path ../explorer-relayer/public.pem