Euphoria Testnet
Script to add Euphoria Testnet to Coin98 and Keplr wallet
by eledra
JavaScript
var foo = async function() {
console.log('start request add euphoria testnet');
await window['keplr'].experimentalSuggestChain({
chainId: "euphoria-2",
chainName: "Aura euphoria TestNet",
rpc: "https://rpc.euphoria.aura.network",
rest: "https://lcd.euphoria.aura.network",
bip44: {
coinType: 118,
},
bech32Config: {
bech32PrefixAccAddr: "aura",
bech32PrefixAccPub: "aura" + "pub",
bech32PrefixValAddr: "aura" + "valoper",
bech32PrefixValPub: "aura" + "valoperpub",
bech32PrefixConsAddr: "aura" + "valcons",
bech32PrefixConsPub: "aura" + "valconspub",
},
currencies: [{
coinDenom: "EAURA",
coinMinimalDenom: "ueaura",
coinDecimals: 6,
// coinGeckoId: "eaura",
}, ],
feeCurrencies: [{
coinDenom: "EAURA",
coinMinimalDenom: "ueaura",
coinDecimals: 6,
// coinGeckoId: "ueaura",
}, ],
stakeCurrency: {
coinDenom: "EAURA",
coinMinimalDenom: "ueaura",
coinDecimals: 6,
// coinGeckoId: "ueaura",
},
coinType: 118,
gasPriceStep: {
low: 0.001,
average: 0.0025,
high: 0.004
},
features: ['no-legacy-stdTx'],
walletUrlForStaking: "https://euphoria.aurascan.io/validators",
logo: "https://i.imgur.com/zi0mTYb.png",
explorer: "https://euphoria.aurascan.io/"
});
console.log('finish request add euphoria testnet');
};
setTimeout(() => {
foo()
console.log(window.keplr)
}, 1001);
console.log('Welcome to euphoria');