Jungle as of
—
Head Block
—
Irreversible Block
—
Block Producer
—
Transactions
—
Non-empty blocks
— / —
TPS Live / All time high
— / —
APS Live / All time high
3.2.0-rc1
System contract
Actions and Tools
Key Pair
GenerateNew Node
RegisterPowerUp
Get ResourcesP2P List
Get P2P ListAPI Endpoints
Get API EndpointsMulty-signature
Create on MSIG.appIssue NFT
SimpleAssetsWallets
AnchorStatus
Block No. | Who | Action | Data |
---|
Colors of rows
Note 1: Many BPs use some load balancer with many nodes behind it. For this reason, even subsequent queries sometimes return different information.
Note 2: We pull the list of node producers from
`cleos system list producers`
. We
do this every several seconds.
Abbreviations
- BP — Block Producer
- TPS — Transactions per second
- APS — Actions in transactions per second
- eTPS — Expired transactions per second. All-time high: 16,922 eTPS
- EVM — Ethereum Virtual Machine
- P2P — Peer-to-peer
- API — Application Programming Interface
Jungle animals here right now
0
FAQ and Tips
- CryptoLions: https://jungle4.cryptolions.io/v2/docs/
- EOS Sweden: http://jungle4.eossweden.org/v2/docs/
- EOS USA: https://jungle.eosusa.io/v2/docs/
To start a fresh node for the first time, you can run nodeos with the following parameters:
./start.sh --delete-all-blocks --genesis-json genesis.json
(run this command in the <NODE> folder)
Make sure you have the following setting in the config:
chain-state-db-size-mb = 16384
(Do NOT set this value higher than your available RAM)
To disable extra validations for nodes without a domain, add the following:
http-validate-host = false
To change limits for your system, add the following in your start.sh:
ulimit -n 65535
ulimit -s 64000
You can create a native Jungle (EOS Testnet) account using the following options:
Option 1:
./cleos.sh system newaccount --stake-net "10.0000 EOS" --stake-cpu "10.0000 EOS" --buy-ram-kbytes 4 <your.account> <new.account> <owner_pub_key> <active_pub_key>
Option 2:
cleos push action eosio.faucet create '[<your.account>, "<owner_pub_key>"]' -p eosio.faucet
To power up your native Jungle account with command line, you can use the following command:
./cleos.sh push action eosio powerup '{"payer": "<your.account>", "<receiver account>":"'$acc'", "days":1, "net_frac":20000000000, "cpu_frac":80000000000, "max_payment":"50.0000 EOS"}' -p <your account>
To get native Jungle EOS tokens use command:
cleos push action eosio.faucet send '["myaccount"]' -p eosio.faucet
To get EVM Jungle EOS tokens use command:
cleos push action eosio.faucet send '["0xaa2F34E41B397aD905e2f48059338522D05CA534"]' -p eosio.faucet
To send EOS with command line, use the following command:
./cleos.sh transfer <your_account> <receiver account> "1.0000 EOS" "Text of the memo (optional)"
To get the balance of test tokens with the command line, use the following command:
./cleos.sh get currency balance eosio.token <account name>