How to use the Burstcoin TestNet

Burst has a permanent TestNet running.  Its purpose is to provide a sandbox for both developers and users to test Burst features and to experiment with features without remorse.  To talk about the testnet, visit us on the Burstcoin Discord server in the #testnet channel.

Please follow the instruction outlined in BAT’s git repository.

You should use a different DB for TestNet than you use for MainNet.

To explore the testnet without actually setting up a node, use http://testnet.getburst.net:

You should use a different DB for TestNet than you use for MainNet.

To connect to the new test net, you will need to install the latest released version of the wallet. You can find instructions for setting up the wallet in the Burstcoin software library. Keep in mind there may be scenarios where you would like to have your own private test net, say in case of some future revisions that might require a fork for adding to the current chain. In this case, you could simply change the value for DEV.P2P.BootstrapPeers, the new value would be your localhost. Keep in mind if you are missing any parts of this configuration you will most likely encounter issues that are resolved by the values below. Again this is for testing purposes and DO NOT USE YOUR REAL PASSPHRASE.

If you wish to be added as a peer to the testnet simply fork and create a Pull Request with your IP address or hostname to get added. All volunteers welcome. We do require you to check in weekly in discord (https://discord.gg/9S3eUBy) (testnet channel) so that you are aware of updates currently being deployed to test net and actively want to participate. If at any time you would like your IP address removed, simply make a pull request and remove it.

For those that would also like to mine while running a node to help with a developer faucet on the testnet. Then please create a new id, sync your peer, and start solo mining to your localhost(port 6876). Currently there is no mining pool on the test net if someone is interested in starting a small pool on the testnet, it would be greatly appreciated. If you want to add information to this page, please submit a pull request with desired changes.

Edit/add the following in conf/brs.properties:

#### DATABASE ##### For MariaDB#DEV.DB.Url=jdbc:mariadb://localhost:3306/DatabaseNameDEV.DB.Username=DatabaseUserDEV.DB.Password=somepasswordDEV.DB.Connections=10#### TestNet Settings ##### Use testnet, leave set to false unless you are really testing.# Never unlock your real accounts on testnet! Use separate accounts for testing only.# When using testnet, all custom port settings will be ignored,# and hardcoded ports of 6874 (peer networking), 6875 (UI) and 6876 (API) will be used.DEV.Offline = noDEV.TestNet = yes# Time Acceleration in Offline/TestNet configurations (1 = normal time, 2 = twice as fast ...)DEV.TimeWarp = 1# Force winning with every deadlineDEV.mockMining = offDEV.preDymaxion.startBlock = 0DEV.poc2.startBlock = 0DEV.digitalGoodsStore.startBlock = 0DEV.automatedTransactions.startBlock = 0DEV.atFixBlock2.startBlock = 0DEV.atFixBlock3.startBlock = 0DEV.atFixBlock4.startBlock = 0DEV.P2P.NumBootstrapConnections = 1BRS.allowedBotHosts = *# Only use this Hosts if you really want to use the testnet!!!DEV.P2P.BootstrapPeers = 3.16.150.48; aya.onthewifi.com; testnet.burst.fun; testddns.gotdns.com; test-burst.megash.it; 144.217.93.166DEV.P2P.rebroadcastTo = 3.16.150.48; aya.onthewifi.com; testnet.burst.fun; testddns.gotdns.com; test-burst.megash.it; 144.217.93.166# Allow the wallet to discover new peers, store them in the DB and reuse them after restart.P2P.savePeers=trueP2P.usePeersDb=trueP2P.getMorePeers=true#### Personal Customization #### P2P.shareMyAddress=true# our examples are aya.onthewifi.com OR testnet.burst.fun OR testddns.gotdns.com OR test-burst.megash.itP2P.myAddress=fqdn.to.your.wallet# Change to your needs, this will be displayed in Peer Overview, modify this to whatever you want.P2P.myPlatform=Official burst.megash.it TestNET Node# Enable/Disable API requests used for blockchain and database manipulation.#API.Debug=false#### Additional Stuff ##### Enter a version. Upon exit, print a list of peers having this version.DEV.dumpPeersVersion =# Force re-validation of blocks and transaction at start.DEV.forceValidate = off# Force re-build of derived objects tables at start.DEV.forceScan = off

If you just need testnet wallet for testing please use this link (http://3.16.150.48:6876/index.html#). If you want to use your own desired peer, you can just change IP addresses.

You can get the testnet coins at this faucet (http://burstcoin.cc:7777/)

If for any reason you need to reset your peer, a fast easy way to do it is as follows:

Stop node, in a terminal execute:

mysql -u root

Once in the mysql shell execute the following commands, assumption is made $yourdatabase name is your database’s name and $youruser is well your user.

DROP DATABASE $yourdatabase;

CREATE DATABASE $yourdatabase;FLUSH PRIVILEGES;

Start node again, wait until sync is complete.

 

11 + 7 =