Users
Create a Wallet
Create a BitSong wallet using Keplr browser extension for the Crescendo-1 testnet.
The easiest way to interact with the BitSong testnet is through Keplr, the most popular Cosmos wallet browser extension. Since the BitSong testnet is not listed in Keplr by default, you need to add it as a custom chain.
Set Up Keplr
Install Keplr
Download and install the Keplr browser extension for Chrome, Firefox, or Edge. Create a new account or import an existing one.
Add the BitSong testnet
Open your browser's developer console (F12 or Cmd+Option+J) and run the following code to register the Crescendo-1 testnet:
await window.keplr.experimentalSuggestChain({
chainId: "crescendo-1",
chainName: "BitSong Testnet (Crescendo-1)",
rpc: "https://rpc.testnet.bitsong.io",
rest: "https://api.testnet.bitsong.io",
bip44: {
coinType: 639
},
bech32Config: {
bech32PrefixAccAddr: "bitsong",
bech32PrefixAccPub: "bitsongpub",
bech32PrefixValAddr: "bitsongvaloper",
bech32PrefixValPub: "bitsongvaloperpub",
bech32PrefixConsAddr: "bitsongvalcons",
bech32PrefixConsPub: "bitsongvalconspub"
},
currencies: [
{
coinDenom: "BTSG",
coinMinimalDenom: "ubtsg",
coinDecimals: 6
}
],
feeCurrencies: [
{
coinDenom: "BTSG",
coinMinimalDenom: "ubtsg",
coinDecimals: 6,
gasPriceStep: {
low: 0.01,
average: 0.025,
high: 0.03
}
}
],
stakeCurrency: {
coinDenom: "BTSG",
coinMinimalDenom: "ubtsg",
coinDecimals: 6
}
})
Keplr will show a prompt asking you to approve the chain addition — click Approve.
Get your address
After adding the chain, select BitSong Testnet (Crescendo-1) from the Keplr network dropdown. Your bitsong1... address will be displayed in the extension.
You can also integrate this chain-suggestion code into a web app so users can add the testnet with a single button click.