How to Become a Super Transmitter
Requirements
An EVM-compatible wallet
Native NTGL tokens on the Entangle network (to cover registration and transaction fees)
Docker and Docker Compose installed
Step 1: Register as a Super Transmitter
Complete Registration
Contact the Entangle team via the contact page to finalize your registration on the network.
Step 2: Launch the Transmitter Node
Generate Transmitter Configurations
Create an empty folder and run the setup command:
bashCopyEditdocker run --rm \
-v $(pwd)/.:/app/agent/ \
-e PRIVATE_KEY="yourprivatekey" \
-e PASSWORD="yourpassword" \
-e NON_EVM_CHAINS="11100000000000000501,othernonevmchainid" \
-e EVM_CHAINS="146,1,otherevmchainids" \
-e IS_SUPER_AGENT=true \
msentangle/agent-setup:3.0
Start the Transmitter Node
Pick a unique name for your agent (e.g., superagent-1
) and start it:
bashCopyEditdocker-compose -p <agent-name> up -d
Congratulations, you're now a Super Transmitter.
Changing Nodes
To switch to different nodes, update the relevant configuration files:
Solana modules: Modify node settings in
transmitter-config.yaml
Multiple node support: In
watcher-config.yml
, useread_rpcs
andwrite_rpcs
fields to define endpoints
evmchains_to_listen:
- chain_id: "80002"
name: Polygon Amoy
rpc_http_urls:
- https://polygon-amoy.gateway.tenderly.co
- https://polygon-amoy.gateway.tenderly.co
- https://polygon-amoy.gateway.tenderly.co
Optional Configuration Parameters
You can adjust performance and behaviour by modifying the following values:
parse_new_headers_interval
– How often to fetch new block headers (e.g.,5s
,1m
)max_query_in_batch
– Max number of requests in one batchfilter_logs_max_blocks
– Max block range for log filteringblocks_delay
– Delay between latest block and the one being processedblocks_batch_to_filter
– Min number of blocks to filter in one gomin_balance_to_alert
– Threshold (in wei) for triggering low-balance alerts
Last updated
Was this helpful?