EOSIO Network Examples
Supported Networks
These snippets are used when instantiating an ual-oreid object or using eosjs.
const eosMainnet = {
chainId: 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906',
rpcEndpoints: [{
protocol: 'https',
host: 'http://api.main.alohaeos.com',
port: ''
}]
};
const eosKylin = {
chainId: '5fff1dae8dc8e2fc4d5b23b2c7665c97f9e9d8edf2b6485a86ba311c25639191',
rpcEndpoints: [{
protocol: 'https',
host: 'api-kylin.eosasia.one',
port: '443'
}]
};
const waxMainnet = {
chainId: '1064487b3cd1a897ce03ae5b6a865651747e2e152090f99c1d19d44e01aea5a4',
rpcEndpoints: [{
protocol: 'https',
host: 'apiwax.3dkrender.com',
port: ''
}]
};
const waxTestnet = {
chainId: 'f16b1833c747c43682f4386fca9cbb327929334a762755ebec17f6f23c9b8a12',
rpcEndpoints: [{
protocol: 'http',
host: 'testnet-wax.3dkrender.com',
port: '80'
}]
};
const telosMainnet = {
chainId: '4667b205c6838ef70ff7988f6e8257e8be0e1284a2f59699054a018f743b1d11',
rpcEndpoints: [{
protocol: 'https',
host: 'telos.greymass.com',
port: ''
}]
};
const telosTestnet = {
chainId: '1eaa0824707c8c16bd25145493bf062aecddfeb56c736f6ba6397f3195f33c9f',
rpcEndpoints: [{
protocol: 'https',
host: 'testnet.eos.miami',
port: ''
}]
};
More TELOS Native RPC endpoints available at https://validate.eosnation.io/telos/reports/endpoints.html.
Last modified 3mo ago