现在开始

从Burstcoin安全性到钱包选择, 入门 指南提供了成功所需的信息。

软件

开源和易于使用的软件的权威集合位于 Burstcoin 软件库.

文档

前往 Burstcoin 文档项目 欲获得更多信息。 贡献新文档或建议改进。

水龙头

激活一个新的钱包进行挖掘或从Bittrex接收转账。 前往 Burstcoin 社区水龙头清单.

常见问题 解答

支持新用户,本节包含 经常问的问题. 访问文档部分,以帮助策划。

伯斯汀软件

Burstcoin 软件是由活跃在 Burstcoin 社区中的有才华的程序员开发的。 正如您在阅读 Burstcoin 的历史中了解到的,其核心区块链技术令人印象深刻。 基于此核心,应用程序将这些令人印象深刻的功能引入实际业务,并有助于实际消费者采用。 Burstcoin 开发吸引和保留的技巧和奉献精神证明了其核心基础价值和独特性。

浏览Burstcoin软件库,你会留下深刻的印象,一个充满激情的社区谁可以完成,谁了解Burstcoin的价值。

赞赏发展贡献。 要参与,请参阅开发部分。

伯斯汀软件库

使用Burstcoin网络高度开发的开源软件不需要大量的技术知识。 使用 64 位版本的 Windows,只需点击几下鼠标,只需一点时间即可安装发送和接收 Burstcoin、基本挖掘操作甚至运行完整节点所需的所有软件。等待单个组件自动下载和安装。

对于更有经验的用户,此库包含 Burstcoin 软件的整个集合。

请注意:新用户应在安装或使用任何 Burstcoin 软件之前查看标题为”使用 Burstcoin 入门”的指南。

此 Burstcoin 软件集合按类别组织。 单击加号打开每个部分。

QBundle - Windows 安装包,包括主 BRS 钱包、完整节点软件、绘图软件、挖掘软件和其他程序

稳定、本地、性能兼容

对于使用 Windows 的初学者来说,最简单的选择是下载 Qbundle。 QBundle 是一个方便的启动器,只需点击几下即可安装 BRS 本地钱包、绘图软件和挖掘软件。
主要开发者: Harry1453
下载链接: https://github.com/burst-apps-team/Qbundle/releases
平台:窗口
安装指南:QBundle 安装和用户指南

钱包:

突发参考软件 (BRS)

稳定、本地、性能兼容
突发参考软件 (BRS) 是主要的爆裂币钱包。 它允许连接到Burstcoin网络。 突发参考软件是 QBundle 中包含的钱包/软件。 此钱包版本由突发联盟开发和维护,并支持多个数据库后端。
主要开发者:突发联盟
下载链接:https://github.com/burst-apps-team/burstcoin/releases
平台:视窗、Linux、MacOS、Docker。 有关特定于平台的安装说明,请参阅下文。

BRS/Windows Installation

Burst Reference Software - Windows Installation
Status - Under Review
Installation with QBundle

All the details regarding the installation of BRS can be found here: QBundle. Indeed, QBundle is a launcher allowing you to install the Burst local wallet in a few clicks.

Installation of BRS only (with MariaDB)

Firstly, you will have to download the latest version of BRS here (zip) : https://github.com/PoC-Consortium/burstcoin/releases. In the conf directory, copy brs-default.properties into a new file named brs.properties.

Secondly, be sure to have the latest version of Java installed on your computer : https://java.com/de/download/.

You will also have to download and install MariaDB : https://downloads.mariadb.org/.

The MariaDb installation will ask to setup a password for the root user.
Add this password to the brs.propertiescode> file created above in the following section:

DB.Url=jdbc:mariadb://localhost:3306/burstdatabaseDB.Username=rootDB.Password=YOUR_PASSWORD

Setup MariaDB

The MariaDB installation will also install HeidiSQL, a gui tool to administer MariaDb. Use it to connect to the newly created MariaDb server and create a new DB called ‘burstwallet’.

MariaDB knowledge base : https://mariadb.com/kb/en/library/documentation/

HeidiSQL documentation : https://www.heidisql.com/help.php

You can also directly connect to mysql and create database trough console :

mysql -u root -pNow we create the database burstwalletcode> for the blockchain.

CREATE DATABASE burstwallet;In addition, we create a user which is used by the wallet to access the database. Replace <your password>code> with a password of your choice.

CREATE USER 'burstwallet'@'localhost' IDENTIFIED BY '<your password>';Finally we, grant this user all privileges for the database burstwalletcode>.

GRANT ALL PRIVILEGES ON burstwallet.* TO 'burstwallet'@'localhost';Finally, now that the database is created and the brs.propertiescode> configured, you only have to run burst.cmdcode> in the burstcoin folder.

How to run a full node on Windows?
Why Run a Full Node ?

Running a full node is one of the most important ways to help support the Burst network. This allows other peers to connect to your wallet and synchronize the blockchain if they are not using an imported DB. When light clients are released, Full Nodes maintain a copy of the blockchain, in the decentralized manner that crypto currencies are designed to run, while light clients will not. Below are the steps for setting up a full node.

Steps on Windows

Firstly, if you have the latest BRS version, UPnP should be enabled and you already run a full node. Otherwise, following these steps :

    1. Once you have a local wallet installed and running you need to forward port 8123 to allow other peers to connect to your wallet.

 

  1. We now need to get some IP addresses.
    • Open “Command Prompt”.
    • Type “ipconfig”
    • Find and record your “Default Gateway” and “IPv4 Address”
  2. Now you will set the machine to have a static IP address. This is so that if the machine restarts, it will not change IP addresses and negate the port forwarding rule we will set up later.
    • Open “Control Panel”.
    • Open “Network and Internet”.
    • Open “Network and Charing Center”.
    • In the left menu, open “Change Adapter Settings”.
    • Right click your preferred method of internet connection.
    • Select “Properties”.
    • Uncheck “Internet Protocol Version 6 (TCP/IPv6)”.
    • Click “Internet Protocol Version 4 (TCP/IPv4)”.
    • Open “Properties”
    • Select “Use the following IP address”
    • In “IP address” type the IPv4 number that you got in Command Prompt.
    • In “Subnet Mask” type “255.255.255.0”.
    • In “Default Gateway” type the default gateway address you got in Command Prompt.
    • Select “Use the following DNS server addresses”
    • In “Preferred DNS server” type “8.8.8.8”
    • In “Alternate DNS server” type “8.8.4.4”
    • Check “Validate settings upon exit”
    • Click “OK”
    • If you receive a warning about “Multiple default gateways…” select “Yes”.
    • Click “Close”
  3. Now open your network router settings by entering your default gateway IP in the URL field of your browser.
  4. Login to your router.
    • If you have never used these settings before, most ISPs have default username/password combinations. A quick google search will help you find it.
    • If you do not remember your username/password combo, you will need to factory reset your router. Be mindful, this will force you to re-setup your entire network.
  5. Find the “Port Forwarding” option. Note, “Port Forwarding” and “Port Triggering” are NOT the same. “Port Forwarding” is generally under the “Advanced” tab.
    • Select “Add Service”, “Add Rule”, or anything along those lines.
    • Set “Common Service” as “Other”.
    • Set service name to “Burstcoin”.
    • Set “Service Type” to “TCP/UDP”.
    • Set IPv4 Address to your machines address which is the address you just made static.
    • Disregard the IPv6 Address field.
    • Set your “Start Port” and “End Port” to “8123”.
    • Save the new service.
  6. Finally, you must reserve the IP address for your specific machine
    • Navigate to “Connected Devices” (or something of the like).
    • Find and click-on the machine you are running the node from.
    • Select “Edit”
    • Change configuration to “Reserved IP”
    • Verify the IP is the same one you set in port forwarding.
    • Select Save.
  7. You are now finished and can close out network settings.

The local wallet must remain running for your full node to be accessible to the network. After a few hours to a few days the network observer will update and you can check that your set up worked. First find your external IP address and then search your external IP address and port in the network observer (ex. 193.182.13.162:8123).

BRS/MacOS Installation

Installation of MacOS Burst Wallet

This tutorial will walk you through the steps required to run a Burst wallet locally on MacOS.

Quick Start

Note: A simple bash script is available to complete all of the steps for you if you prefer using a script. Simply download a .zip of the code located at https://github.com/beatsbears/macos_burst and follow the directions in the README file. If you prefer to execute each step without using a script, begin the process with the dependencies section.

Dependencies

There are a few dependencies that you should check on prior to starting the install process.

  1. OSX 10.10 or higher
  2. Sufficient disk space for the full blockchain (~8Gb or so)
  3. The ability to leave your computer up and running for several hours in order to allow the full blockchain to synchronize.

Steps

1. Install Homebrew

Homebrew (brew) is an excellent package manager for MacOS. To install, open a new terminal and run the following command. Note: You may be asked for your password in order to complete.

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

If you already have brew installed, it is a good practice to make sure everything is up to date by entering

$ brew update

2. Install MariaDB

MariaDB is an open-source fork of the MySQL relational database. It is used to store the blockchain and other wallet information. Install MariaDB by typing the following.

$ brew install mariadb

3. Start MariaDB and create a user for the wallet

$ brew services start mariadb

Once MariaDB is running, log into MariaDB to create a new wallet database and add a user to manage it. Note: Your MariaDB server will likely not have a root password set. Consult google for instructions for setting a new root password.

$ mysql -u root -p -h localhost

Once you have successfully logged into MariaDB, execute the following SQL commands.

CREATE DATABASE burstwallet; CREATE USER 'burstwallet'@'localhost' IDENTIFIED BY '<YOUR PASSWORD>'; GRANT ALL PRIVILEGES ON burstwallet.* TO 'burstwallet'@'localhost';

Assuming these commands have executed successfully, exit the MariaDB console by typing qcode> and hitting Enter.

4. Install Java 8 SDK

Brew gives you the latest version of all packages, but the latest version of Java may not work without issue. You can install the latest verified version (Java 8) by following these steps.

Install brew cask.

$ brew tap caskroom/cask

Use brew cask to install a specific version of a package.

$ brew cask install java8

5. Download and setup the wallet

The wallet package is located at https://github.com/burst-apps-team/burstcoin/releases. Unzip the latest release and open the nxt.properties file from the conf directory in a text editor. Add the following lines to the end of the file

nxt.dbUrl=jdbc:mariadb://localhost:3306/burstwalletnxt.dbUsername=burstwalletnxt.dbPassword=<YOUR PASSWORD>

These values tell Java where to find the MariaDB database.

6. Start the wallet

In your open terminal window verify that you are in the same directory as the burst.sh startup script. If you run ls in your terminal window you should see a response similar to the following:

Slow-Air:burstcoin-1.3.6cg andrewscott$ 1s

Burst_Wallet.url burst.sh html

MIT-license burst_db lib

burst.cmd conf

burst.jar genscoop.c1

In your terminal window, use the following command to make sure you have permission to execute the startup script.

chmod +x burst.sh

Launch the wallet script. Note: You will need to leave this terminal window running until the full blockchain has synchronized. This could take several hours or days depending on your processor speed and and internet connection.

./burst.sh

You should see a lot of output flying by pretty quickly as the wallet starts up.

7. Creating your account and signing in. (marked for research) (URL needed)

Assuming you see no obvious errors while the wallet is starting up, check to see if it is running successfully by entering (similar to) “https://” “localhost:8125/index.htm” in your browser. Your wallet should appear.

Click the New? Create Your Account! 按钮。 The wallet will generate a passphrase of 12 words. WRITE THESE WORDS DOWN AND DO NOT SHARE THEM. This passphrase is your private key and will be how you access your wallet and Burst funds. 请查看 getting started guide 有关确保爆裂的信息。 Follow the confirmation step on the next page and click Next .

You should now see the wallet dashboard.

If so, congratulations! You are up and running.

8. Wait for the blockchain to download

Now that you have your wallet running locally and have created an account, you will need to wait for the blockchain to fully synchronize before you can see your up-to-date Burst balance. This may take a few hours or a few days depending on your processor and internet connection speed. Please note: Your Account Id is listed in the top left corner of your wallet. This address is necessary for sending and receiving Burst.

9. References

How to run a full node on MacOS?

Why Run a Full Node ?

Running a full node is one of the most important ways to help support the Burst network. This allows other peers to connect to your wallet and synchronize the blockchain if they are not using an imported DB. When light clients are released, Full Nodes maintain a copy of the blockchain, in the decentralized manner that crypto currencies are designed to run, while light clients will not. Below are the steps for setting up a full node.

Network Settings

  • Once you have a local wallet installed and running you need to forward port 8123 to allow other peers to connect to your wallet.
  • Now you will set the machine to have a static IP address. This is so that if the machine restarts, it will not change IP addresses and negate the port forwarding rule we will set up later.

Steps on MacOS

Firstly, if you have the latest BRS version, UPnP should be enabled and you already run a full node. Otherwise, following these steps :

  1. Open “System Preferences”
  2. Select “Network”
  3. Select “Advanced”
  4. Select “TCP/IP”
  5. Note down your “IPv4 Address”
  6. Note down the “Router” address, this is your default gateway.
  7. Leave “Configure IPv6” set to “Automatic”.
  8. Change “Configure IPv4” to “Manual”.
  9. Now in the “IPv4 Address” field, enter the IPv4 address you copied down before switching to manual.
  10. Make sure “Subnet Mask” is still 255.255.255.0
  11. Make sure “Router” still matches the router number you copied down before switching to manual.
  12. Click “Ok”
  13. Click “Apply”
  14. Close “System Preferences”

Router Settings

Now open your network router settings by entering your default gateway IP in the URL field of your browser. Login to your router.

  • If you have never used these settings before, most ISPs have default username/password combinations. A quick google search will help you find it.
  • If you do not remember your username/password combo, you will need to factory reset your router. Be mindful, this will force you to re-setup your entire network.
  1. Find the “Port Forwarding” option. Note, “Port Forwarding” and “Port Triggering” are NOT the same. “Port Forwarding” is generally under the “Advanced” tab.
  2. Select “Add Service”, “Add Rule”, or anything along those lines.
  3. Set “Common Service” as “Other”.
  4. Set service name to “Burstcoin”.
  5. Set “Service Type” to “TCP/UDP”.
  6. Set IPv4 Address to your machines address which is the address you just made static.
  7. Disregard the IPv6 Address field.
  8. Set your “Start Port” and “End Port” to “8123”.>
  9. Save the new service.

The local wallet must remain running for your full node to be accessible to the network.

引用:

BRS/Linux Installation

Debian 9 “Stretch” installation

The following steps are to install BRS Core Wallet on a fresh installation of Debian Linux version 9 “Stretch”. Please be sure to check Git Repository for the latest release before proceeding.

Note: Commands to be entered into the shell will be formatted in bold text, e.g.:

date

example command outputs will not be bold, e.g.:

Wed 28 Nov 12:02:18 GMT 2018

Prerequisites

Before you begin the installation, the following packages need to be installed:

  • java 8 jdk
  • curl
  • dirmngr

Make sure your installation is up to date

apt update && apt upgrade

Run the following command to install the above packages:

apt install curl default-jdk dirmngr -y

Configuring Java environment path

Find the path to the jdk

update-alternatives --config javac

If only one version of Java is installed, this will give you a similar output to the following:

There is only one alternative in link group javac (providing /usr/bin/javac): /usr/lib/jvm/java-8-openjdk-amd64/bin/javacNothing to configure.

Copy the path from the last output and edit the environment file:

nano /etc/environment

Add the following line to the file:

JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64/bin/javac" (taken from the path above)

To make the above change effective in your current shell, run the following:

source /etc/environment

Now test that the JAVA_HOME variable is part of PATH

echo $JAVA_HOME

This will output the path you entered into the environment file. Now confirm the version of java installed

javac -version

Installing MariaDB

Add the MariaDB signing key

apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8

Grab the and run MariaDB setup script

curl -sS https://downloads.mariadb.com/MariaDB/mariadb_repo_setup | bash

Update your sources list:

apt update

Install MariaDB:

apt install mariadb-server

During installation you will be prompted to enter a password for the root user. Enter and remember this as we will need it later.

Create a database(brs_master), user (brs_user) and assign a password to the user by running the following command:

echo "CREATE DATABASE brs_master; CREATE USER 'brs_user'@'localhost' IDENTIFIED BY 'yourpassword';GRANT ALL PRIVILEGES ON brs_master.* TO 'brs_user'@'localhost';" | mysql -uroot -pmysql -uroot -p < init-mysql.sql

This will prompt you for the password you entered for the root user when installing mariaDB

Configuring the BRS Wallet

Grab the BRSWallet zip from GitHub (always be sure to check link to the latest version. (2.2.6 was latest at time of writing)

wget https://github.com/PoC-Consortium/burstcoin/releases/download/2.2.6/burstcoin-2.2.6.zip

Create a directory to unzip to:

mkdir BRSWallet

Unzip the burstcoin zip file to the newly created directory:

unzip burstcoin-2.2.6.zip -d BRSWallet/

Navigate to the conf subdirectory within the newly created directory:

cd BRSWallet/conf

Create a brs.properties file inside the conf folder:

nano brs.properties

Add the following lines:

DB.Url=jdbc:mariadb://localhost:3306/brs_masterDB.Username=brs_userDB.Password=yourpassword

中。 burst.sh file is not yet executable. We need to change the permissions to make it so. Drop back to the BRSWallet directory cd .. and issue the following:

chmod 750 burst.sh

Now when we list the contents of the directory we can see that the burst.sh file has the correct permissions:

ls -l
total 1399340-rw-r--r-- 1 root root 1409751247 Nov 5 12:29 brs.mariadb.zip-rw-r--r-- 1 root root 507 Nov 18 22:17 burst.cmddrwxr-xr-x 2 root root 4096 Nov 18 22:16 burst_db-rw-r--r-- 1 root root 23015701 Nov 18 22:17 burst.jar-rwxr-x--- 1 root root 17831 Nov 18 22:17 burst.sh-rw-r--r-- 1 root root 46 Nov 18 22:17 Burst_Wallet.urldrwxr-xr-x 2 root root 4096 Nov 29 15:44 conf-rw-r--r-- 1 root root 29288 Nov 18 22:17 genscoop.cldrwxr-xr-x 3 root root 4096 Nov 18 22:17 html-rw-r--r-- 1 root root 23232 Nov 18 22:17 init-mysql.sqldrwxr-xr-x 3 root root 4096 Nov 18 22:17 lib-rw-r--r-- 1 root root 35149 Nov 18 22:17 LICENSE.txt-rw-r--r-- 1 root root 4574 Nov 18 22:17 README.md

Importing the database

The quickest way to get up an running is to bootstrap the database by importing a relatively up to date dump of the database. Your wallet will synchronise from this point in time automatically. If you prefer to synchronise from scratch this will take much longer to complete.

./burst.sh import mariadb

If you already have a/part of a brs_master database present, you will be asked if you want to remove the current database, download and import a new one. Answer y or n.

Do you want to remove the current databases, download and import new one? y

If you created the brs.properties file as per above you will be asked the following question:

Detected a previous database config(conf/brs.properties). Do you want to use the config?

Answer: y

Answer the questions when prompted. If you are running the wallet locally on the same device that you have your terminal open to and you used the same database (brs_master) and username (brs_user) above when creating the database, you can simply press enter for the first three questions. For the fourth question, enter the password that you input when creating your database and user.

./burst.sh import mariadbDo you want to remove the current databases, download and import new one? yDetected a previous database config(conf/brs.properties). Do you want to use the config? yCould not find Database PasswordPlease enter your connection detailsHost (localhost) :Database (brs_master):Username (brs_user) :Password empty : <Enter your password here>--2018-11-29 15:44:47--  https://download.cryptoguru.org/burst/wallet/brs.mariadb.zipResolving download.cryptoguru.org (download.cryptoguru.org)... 195.201.117.34Connecting to download.cryptoguru.org (download.cryptoguru.org)|195.201.117.34|:443... connected.HTTP request sent, awaiting response... 200 OKLength: 1409751247 (1.3G) [application/zip]Saving to: ‘brs.mariadb.zip’brs.mariadb.zip 100%[====================================================>] 1.31G 1.87MB/s in 12m 4s2018-11-29 15:56:52 (1.86 MB/s) - ‘brs.mariadb.zip’ saved [1409751247/1409751247]Archive: brs.mariadb.zip inflating: brs.mariadb.sql[+] Import successful - please remove brs.mariadb.zip

Remove the download DB dump zip file to reclaim space and avoid an outdated zip file in future if you require a DB bootstrap

rm brs.mariadb.zip

Running the Wallet

We need to change owner from root to a normal user as all the files/directories are now owned by root (see below)

total 1399340-rw-r--r-- 1 root root 1409751247 Nov 5 12:29 brs.mariadb.zip-rw-r--r-- 1 root root 507 Nov 18 22:17 burst.cmddrwxr-xr-x 2 root root 4096 Nov 18 22:16 burst_db-rw-r--r-- 1 root root 23015701 Nov 18 22:17 burst.jar-rwxr-x--- 1 root root 17831 Nov 18 22:17 burst.sh-rw-r--r-- 1 root root 46 Nov 18 22:17 Burst_Wallet.urldrwxr-xr-x 2 root root 4096 Nov 29 15:44 conf-rw-r--r-- 1 root root 29288 Nov 18 22:17 genscoop.cldrwxr-xr-x 3 root root 4096 Nov 18 22:17 html-rw-r--r-- 1 root root 23232 Nov 18 22:17 init-mysql.sqldrwxr-xr-x 3 root root 4096 Nov 18 22:17 lib-rw-r--r-- 1 root root 35149 Nov 18 22:17 LICENSE.txt-rw-r--r-- 1 root root 4574 Nov 18 22:17 README.md

Navigate to the BRSWallet parent directory

cd ..

Change ownership of all files and directores within the BRSWallet directory:

chown -R burst:burst BRSWallet/

Now the ownership has ben changed to the user burst:

total 1399344-rw-r--r-- 1 burst burst 2506 Nov 29 16:59 brs.log-rw-r--r-- 1 burst burst 1409751247 Nov 5 12:29 brs.mariadb.zip-rw-r--r-- 1 burst burst 507 Nov 18 22:17 burst.cmddrwxr-xr-x 2 burst burst 4096 Nov 18 22:16 burst_db-rw-r--r-- 1 burst burst 23015701 Nov 18 22:17 burst.jar-rwxr-x--- 1 burst burst 17831 Nov 18 22:17 burst.sh-rw-r--r-- 1 burst burst 46 Nov 18 22:17 Burst_Wallet.urldrwxr-xr-x 2 burst burst 4096 Nov 30 10:39 conf-rw-r--r-- 1 burst burst 29288 Nov 18 22:17 genscoop.cldrwxr-xr-x 3 burst burst 4096 Nov 18 22:17 html-rw-r--r-- 1 burst burst 23232 Nov 18 22:17 init-mysql.sqldrwxr-xr-x 3 burst burst 4096 Nov 18 22:17 lib-rw-r--r-- 1 burst burst 35149 Nov 18 22:17 LICENSE.txt-rw-r--r-- 1 burst burst 4574 Nov 18 22:17 README.md

At this stage you can reboot the machine to ensure that the environmental variables are applied to every user session going forward. Following the reboot, log in as the your normal user (burst in this case) and run the wallet:

./burst.sh

You will see the following output:

Nov 29, 2018 4:28:33 PM brs.Burst loadPropertiesINFO: Initializing Burst Reference Software (BRS) version 2.2.6Nov 29, 2018 4:28:33 PM org.ehcache.core.EhcacheManager createCacheINFO: Cache 'account' created in EhcacheManager.[INFO] 2018-11-29 16:28:33 brs.db.sql.Db - Using mariadb Backend[INFO] 2018-11-29 16:28:33 brs.db.mariadb.MariadbDbVersion - Database update may take a while if needed, current db version 177...

Note: If closing the terminal or pressing Ctrl-c, the wallet will shutdown:

[INFO] 2018-11-29 16:53:12 brs.Burst - Shutting down...

Configure BRS to run as a service/daemon

Closing the terminal or pressing Ctrl-c will result to a shutdown of the wallet. To avoid this, BRS should be run as a service. It is particularly helpful if you run BRS on a linux system using SSH.

First, if systemd isn’t installed on your system, run the following command:

sudo apt install systemd

Then, you will have to create a new service file for BRS:

sudo nano /etc/systemd/system/brs.service

Add the following configuration (replace description, Exec, WorkingDirectory and User according to your setup):

[Unit]Description=BRS WalletAfter=network.targetWants=network.target[Service]ExecStart=/usr/bin/java -cp /home/burst/burst.jar:/home/burst/conf brs.BurstWorkingDirectory=/home/burst/User=brs-mariadbRestart=alwaysRestartSec=90[Install]WantedBy=multi-user.target

After that, enable the service:

sudo systemctl enable brs.service

To start the service, type:

systemctl start brs.service

To get the status of the service:

systemctl status brs.service

BRS/Docker Installation

Burst Reference Software – Docker Installation

Docker Installation

The Burst Reference Software can be run with Docker and Docker-Compose. Since Docker supports all major platforms, this can be an easy-to-setup alternative to a platform-dependent installation of the Burst Reference Software.

Prerequisites

Docker CE

Docker Compose

Database

Currently, Docker images for BRS version 2.2 with MariaDB or H2 Database are available at Docker Hub. You have to choose one of them, which is used to store the blockchain.

MariaDB

The following docker-compose.ymlcode> file can be used to run the BRS with MariaDB database in containers.

version: '3'<!--T:29-->services: burstcoin: image: pocconsortium/burstcoin:2.2-mariadb restart: always depends_on: - mariadb ports: - 8123:8123 - 8125:8125 mariadb: image: mariadb:10 environment: - MYSQL_ROOT_PASSWORD=burst - MYSQL_DATABASE=burst command: mysqld --character_set_server=utf8mb4 volumes: - ./burst_db:/var/lib/mysql

Save the file and run it.

docker-compose up -d

With the -dcode> flag, both containers are started as background processes. A burst_dbcode> folder will be created in the directory of the docker-compose.ymlcode> file, if it was not created before. This folder is mounted to the MariaDB storage and holds the burstcode> database containing the blockchain. The containers can be stopped and removed at any time via docker-compose downcode>. With the next start, the burst_dbcode> folder will be mounted again and your previous blockchain status will be loaded.

Alternatively, H2 can be used as database to store the blockchain. H2 is an embedded database, therefore one does not have to run it in a separate container. Simply run the following command.

docker run -p 8123:8123 -p 8125:8125 -v "$(pwd)"/burst_db:/etc/burstcoin/burst_db -d pocconsortium/burstcoin:2.2-h2

"$(pwd)"/burst_db is the path to the folder which is mounted to the H2 storage. If it does not exist a new burst_dbcode> folder is created in the current directory.

Custom configuration

In order to use a custom config – brs.propertiescode> file, you can simply mount a folder containing the brs-default.propertiescode> and the brs.propertiescode> to the /confcode> mount point.

MariaDB

version: '3'<!--T:33-->services: burstcoin: image: pocconsortium/burstcoin:2.2-mariadb restart: always depends_on: - mariadb ports: - 8123:8123 - 8125:8125 volumes: - ./conf:/etc/burstcoin/conf mariadb: image: mariadb:10 environment: - MYSQL_ROOT_PASSWORD=burst - MYSQL_DATABASE=burst command: mysqld --character_set_server=utf8mb4 volumes: - ./burst_db:/var/lib/mysql

docker run -p 8123:8123 -p 8125:8125 -v "$(pwd)"/burst_db:/etc/burstcoin/burst_db -v "$(pwd)"/conf:/etc/burstcoin/conf -d pocconsortium/burstcoin:2.2-h2

Phoenix

本地,Dymaxion 兼容

新的跨平台突发钱包。 多平台应用程序架构可通过几项关键的前端技术实现:反应原生技术、角技术、电子技术。 通过结合使用这些技术,Burst 钱包开发人员将享受现代应用程序开发工作流,而不会牺牲最终产品的质量。 有关详细信息,请参阅SIP-18。

主要开发人员:突发应用团队 (BAT)
Github 存储库: https://github.com/burst-apps-team/phoenix/releases
平台: 视窗、 MacOS、 Linux、 iOS、 安卓

纸爆裂

稳定,性能相容
纸爆裂是一个纸钱包生成器的爆裂。
主要开发者: 伞公司03
下载链接: https://github.com/umbrellacorp03/PaperBurst/releases/tag/1.0

平台:窗口

Guide:

This tool can be used to generate a new wallet or to use an existing wallet. In order to use the tool, provide information as shown:

After all required fields of the form have been populated, clicking the desired button. The paper wallet is output as an easily printable .pdf file.

Paper wallets can be used to transfer funds using public keys, to store funds (the funds are still on the blockchain rather than on the paper). Paperburst can be used as a reference document for cold storage.

Image showing the Burstcoin paper wallet generator integrated with QBundle

Image of a Burstcoin paper wallet

易2爆

Dymaxion 兼容

Easy2Burst 是 QBundle 的继承者。
主要开发人员: HeosSacer
Github存储库:https://github.com/HeosSacer/Easy2Burst
平台: 视窗、 Linux、 MacOS

阿斯佩拉

Dymaxion 兼容
阿斯佩拉是一个爆裂币钱包写在去。 这个钱包为Burstcoin开辟了一个全新的维度,拥有最先进的技术(部分块验证、新的前端等)。 这个项目不再开发。
主要开发人员:PoC-联盟
Github存储库:https://github.com/PoC-Consortium/Aspera
平台: 视窗、 Linux、 MacOS

Burstpay 手机钱包(新!)

稳定,性能相容

适用于Android和iOS的移动钱包,具有以下功能:

  • 仅监视地址
  • 货币转换
  • 客户端加密和解密
  • 加密/未加密的事务消息
  • 联系簿
  • QR 码支持
  • 安全、轻松地生成密码
  • 支持超过 15 种语言
  • 支持超过30种货币

主要开发者: iHashing Technology Co., Ltd.

下载链接: https://github.com/ihashing/BURSTPAY-mobile
平台: iOS, Android

伯斯汀手机钱包

在谷歌播放突发有几个移动应用程序,但有些已经过时,有些质量可疑。 这是唯一推荐的移动钱包。

稳定、在线、性能兼容
适用于 Android 和 iOS 的移动钱包,提供以下功能:

  • 仅监视地址
  • 货币转换
  • 客户端加密和解密
  • 加密/未加密的事务消息
  • 联系簿
  • QR 码支持
  • 安全、轻松地生成密码
  • 支持超过 15 种语言
  • 支持超过30种货币

主要开发人员:PoC-联盟(领先开发:@cgb)
下载链接:https://play.google.com/store/apps/developer?id=PoC+Consortium
平台: 安卓

热钱包

当前 BURST 钱包的轻量版本,便于发送和接收 BURST。
Main Developer: Zoh, Burst Applications Team
下载链接:热钱包.现金
视频指南:https://www.youtube.com/watch?v=V-1TC3NcMME&feature=youtu.be

I18N = 国际化(移动钱包)

钱包本地化的主要部分是通过包含钱包中使用的文本字符串定义的 .json 文件完成的。命名是这样的,2个字母的代码表示语言。en.json 是源文件(见下文)。

如果要将此文件翻译成某种语言,您需要翻译”创建新帐户”、”完成”等,而不是 ALLCAPS 中的文件。 一个主要的限制是,翻译的文本不仅正确和文体,而且长度与原始内容大致相同。 它可以更短,但不超过更长的时间。 两个字母的语言代码为ISO 639-1

en.json 本地化文件

引用

https://bitcointalk.org/index.php?topic=2080040.0https://forums.getburst.net/t/one-month-of-pocc/603https://forums.getburst.net/t/burst-on-the-go-the-poc-consortium-releases-their-android-wallet/794

Plotting 软件:

ENGRAVER

稳定,性能相容,POC 1,POC 2
雕刻机是 BURST 绘图仪,可本机生成优化的绘图文件。
它生成 PoC2 文件,旨在在任何具有足够合理文件系统(能够预分配空间)的 UNIX 系统上工作,但目前只测试了 Linux 和 MacOS。 仅限 64 位!
主要开发人员:PoC-联盟
下载链接:https://github.com/PoC-Consortium/engraver
安装指南:(见下文)雕刻机 - 如何从源编译

Engraver- How to compile from source

Credits: Sphinxicus

Description

Engraver is the reference Burstcoin (or Burst) cross-platform plotting software created to further improve and optimize Burst plot file creation.

The following steps are to install Engraver 2.2.0 by compiling from source on a fresh installation of Debian Linux version 9 “Stretch”. Please be sure to check Git Repository for the latest release before proceeding.

Note: Commands to be entered into the shell will be formatted in bold text, e.g.:

date

example command outputs will not be bold, e.g.:

Wed 28 Nov 12:02:18 GMT 2018

Prerequisites

Before you begin the installation, the following packages need to be installed:

  • curl
  • git
  • build-essential

Change to root user:

su
Enter root password

Install curl, git and build essential packages:

apt install curl git build-essential -y

Once the above packages have completed installation, its time to install Rust.

Installing Rust (stable)

To install Rust, run the following command:

curl https://sh.rustup.rs -sSf | sh

You will be presented with three options (see below):

Current installation options: default host triple: x86_64-unknown-linux-gnu default toolchain: stable modify PATH variable: yes1) Proceed with installation (default)2) Customize installation3) Cancel installation>

Choose option 1 to install

Once installation is complete, follow the instructions to configure your current terminal sessions’ environment variable so that you can run Rust related commands:

source $HOME/.cargo/env

To confirm the installation of the correct channel of Rust, type the following:

rustc -version

This should give you the output below:

rustc 1.31.0 (abe02cefd 2018-12-04)

Obtaining the source files

To download the source files from the Git repository, run the following command, (please make sure to check the exact path to the latest version) :

git clone https://github.com/PoC-Consortium/engraver

This will download and extract the files to the engraver sub directory (from where your present working directory is)

Compiling the source files

Navigate to the engraver directory:

cd engraver

build the application:

cargo build -release

Running Engraver

Once the above has completed, navigate to the executable:

cd /target/release

From here you can run engraver and begin plotting. Example command:

./engraver -n 1000 -id 12345678912345678912 -path /home/burst/Burst -sn 0
To understand the complete range of flags/options available for the engraver application, please read the Wiki page on GitHub.

涡轮图车 9000

稳定,性能相容,POC 1,POC 2
TurboPlotter 9000 是一个 CPU/GPU PoC 1 + PoC 2 绘图仪和绘图完整性检查器。
主要开发者:黑带
下载链接:https://blackpawn.com/tp/
平台: 视窗、 Linux、 MacOS

XPlotterGui

稳定,性能相容,POC 1POC 2
XplotterGui 是具有 SSD 缓存、文件合并和 POC2 转换功能的 Xplotter 的 GUI 版本。
主要开发人员: 强尼FFM
下载链接:https://github.com/JohnnyFFM/XPlotterGui/releases/latest
平台:窗口

XPlotter 蒙上

稳定,性能相容,POC 1,POC 2
XPlotter 是 QBundle 附带的默认绘图仪,提供具有 AVX 支持的 CPU PoC 1 绘图。 此修改版本支持 PoC 2 绘图。
主要开发人员: 强尼FFM
下载链接:https://github.com/JohnnyFFM/XPlotter/releases/tag/v.1.31
平台:窗口

Guide:

Plotting is the process of pre-computing hash functions and saving them onto storage units (HDDs). XPlotter is included with QBundle and no additional installation is required. There are however options that need to be configured.

  • Click on Tools: Plotting: Plotter
  • Add any plotfiles that you already have. Use the “Import Plotfile” button.
  • Provide the following information in “Basic settings” before starting the plotter:

Location for saving plot files

Numeric account ID to be associated with the generated plots. Click the selector to the right of the form field to select from a list of accounts. If you enter the ID number manually, be absolutely sure that it is entered correctly. If not, your plot files will be unusable. Be sure that no trailing spaces are included, particularly if you use a copy and paste function to enter the ID.

  • Set plot file size using the slider. For easier maintenance, limit plot size to 1 or 2 Terra bytes.

Adding files to “My Plotfiles” and clicking on “Start plotting” will allow the miner to begin using the plots as soon as a scoop has been plotted, it is not necessary to wait until the entire plot file is complete.

Advanced settings for Xplotter allow the user to:

  • Set the start nonce of the new plot file. If all existing plots have been imported (recommended) the plotter will continue plotting using the number after the highest existing nonce. Leaving gaps between nonces does not improve mining. If no plot file has been created, the plotter will start with a nonce number of 0.
  • Set the number of CPU threads to be used.
  • Set the amount of memory to be used.
  • For Plot type, use PoC2 (mandatory). Do not use POC1 as it is no longer supported.
  • After all settings have been submitted, click “Start Plotting”.

gpuPlot 发电机

稳定,性能相容,POC 1
gpuPlot 发电机是 GPU PoC 1 绘图仪。
主要开发人员: 巴蒙
下载链接:https://github.com/bhamon/gpuPlotGenerator/releases/tag/v4.2.2
平台: 视窗、 Linux、 MacOS

挖矿软件:

清道夫

稳定,性能相容,POC 1
复仇者是写在鲁斯特的爆矿工。 它具有直接 io、avx512f、avx2、avx、sse 和 opencl。
主要开发商:PoC联盟
下载链接: https://github.com/PoC-Consortium/scavenger/releases/tag/v.1.7.2
平台: Windows、 MacOS、 Linux、 Unix (64 位)

Scavenger - Compile From Source

Description

Scavenger is a burst miner developped by the PoC Consortiun and written in Rust. If features direct io, avx 512f, avx2, avx, sse and opencl support. At the time of writing this is the preferred miner of choice for both CPU and GPU mining.

The following steps are to install Scavenger 1.6.4 by compiling from source on a fresh installation of Debian Linux version 9 “Stretch”. Please be sure to check Git Repository for the latest release before proceeding.

Note: Commands to be entered into the shell will be formatted in bold text, e.g.:

date

example command outputs will not be bold, e.g.:

Wed 28 Nov 12:02:18 GMT 2018

Prerequisites

Before you begin the installation, the following packages need to be installed:

  • curl
  • git
  • build-essential

Change to root user:

su

Enter root password

Install curl, git and build essential packages:

apt install curl git build-essential -y

Once the above packages have completed installation, its time to install Rust.

Note: The features used when compiling Scavenger are not available on the stable release channel of rust, therefore the nightly channel needs to be installed.

Installing Rust (nightly)

To install Rust, run the following command:

curl https://sh.rustup.rs -sSf | sh

You will be presented with three options (see below):

Current installation options: default host triple: x86_64-unknown-linux-gnu default toolchain: stable modify PATH variable: yes1) Proceed with installation (default)2) Customize installation3) Cancel installation>

To install the nightly channel chose option 2, this will ask you additional questions, answer as per below:

Q: Default host triple?A: Press enter to leave unchanged

Q: Default toolchain? (stable/beta/nightly/none)A: nightly

Q: Modify PATH variable? (y/n)A: y

You will be presented with a summary of the current installation options as per your answers provided above:

Current installation options: default host triple: x86_64-unknown-linux-gnu default toolchain: nightly modify PATH variable: yes1) Proceed with installation (default)2) Customize installation3) Cancel installation

Chose option 1 to install

Once installation is complete, follow the instructions to configure your current terminal sessions’ environment variable so that you can run Rust related commands:

source $HOME/.cargo/env

Switching from Rust (stable) to Rust (nightly)

If you chose to or already have the stable channel of rust installed you can switch channels by using the following command:

rustup default nightly

To confirm the instalation of the correct channel of Rust, type the following:

rustc -version

This should give you the output below, note the “nightly” present (version correct at time of writing):

rustc 1.32.0-nightly (6bfb46e4a 2018-11-26)

Obtaining the source files

To download the source files from the Git repository, run the following command, (please make sure to check the exact path to the latest version as this will change as later versions are released) :

wget https://github.com/PoC-Consortium/scavenger/archive/1.6.4.zip

This will download the file 1.6.4.zip to your current directory.

Extract the contents of the zip file:

unzip 1.6.4.zip

This will create a new directory named scavenger-1.6.4.

Compiling the source files

Navigate to the scavenger-1.6.4 directory

cd scavenger-1.6.4

At this point it is worth deciding what you are going to use to do the mining, CPU/GPU and also what instruction sets are available on your device. See the README.md file located in the scavenger-1.6.4 directory for an overview of features to use.

In this example, a CPU with the SSE2 instruction set will be used therefore the simd feature option is required (the same would work for AVX, AVX2 etc). Run the following command to compile the code:

cargo build -release -features=simd

Post compiling steps

Copy the scavenger executable to the scavenger-1.6.4 directory (two levels up in this case). This placed it in the same directory as the config.yaml file which is required for it to run.

cp scavenger ../../scavenger

Navigate back to your scavenger-1.6.4 directory from the release directory

cd ../..

At this point you can run scavenger and it will make use of the test_data file to simulate mining on the dev.burst-test.net

Once you know it will run you will need to configure the config.yaml file to your setup. The config file itself is well commented and the GitHub Wiki has further information if required.

Additional notes

If the above steps were followed verbatim, all the scavenger files will be owned by root. It is not recommended to run as root so we will change the owner to a normal user, “burst” in this case. From the directory a level up from your scavenger-1.6.4 directory run:

chown -R burst:burst scavenger-1.6.4

This will recursively change ownership to the user “burst” for all files and subdirectories within the scavenger-1.6.4 directory.

to logout of root type:

exit

You are now back at the shell as your normal user (burst). You can now run scavenger by issuing the following command from the scavenger-1.6.4 directory:

./scavenger

Example output from running scavenger

Links

软件

https://github.com/PoC-Consortium/scavenger/releases/tag/v.1.7.2

GitHub Documentation

https://github.com/PoC-Consortium/scavenger/wiki

布拉戈米纳·莫德

稳定,性能相容,POC 1,POC 2
这是布拉戈米纳的修改版本。 布拉戈米纳的这种修改建立在Quibus先前所做的修改之上。
主要开发人员: 强尼FFM
下载链接:https://github.com/JohnnyFFM/miner-burst/releases/tag/v.1.170911
平台:窗口

布拉戈米纳

  • 更新与无碰撞双挖掘
  • 跟踪(和显示)可能损坏的绘图文件

稳定,性能相容,POC 1,POC 2
这是一个修改版本的布拉戈米纳由adnzno1

主要开发者: andzno1

下载链接:https://github.com/andzno1/blagominer

Guide:

Blago’s miner (modified by Quibus and JohnnyFFM) is the default mining software packaged with QBundle. It can be used for pool mining or for solo mining.

Please note: If solo mining, running a fully synchronized local wallet is required. The passphrase for the mining account associated with your plot files must be provided and will be stored in plain text in QBundle/BlagoMiner/miner.conf. If desired, you can create an account specifically for mining rather than using a single wallet for both mining and maintaining significant balances.

  • To install, click on “File” and then “Application Manager”.
  • Place a check mark in the box next to “Blago’s Miner”.
  • Click on “Install/Update”
  • After the software downloads and extracts, verify that an extracted (unzipped) folder with the name “BlagoMiner” is located in the main QBundle folder. If the file does not appear, locate it a sub folder of the zipped version and copy it into the main folder (same level as zipped version) as the final installation step.
  • Open the miner by clicking “Tools” and the “Miner”. The following screen will appear.

All settings provided in the interface shown above will be passed to the miner.conf file. This file is located in the Qbundle/BlagoMiner folder. Users can edit this file directly.

  • If you will be solo mining, click on the “solo mining” radio button.
  • If you will be pool mining, click on “Select predefined pool”. Required configuration data will be populated automatically. If your desired pool is not listed, obtain the configuration information directly from the pool operator and enter it manually (mining server, update server, info server, deadline limit, and port information).
  • Set the deadline limit. Calculators for this purpose are provided by each pool. If your calculated deadline (based on your available plot size) exceeds your pool’s maximum deadline, this limit should be reduced to the maximum accepted by the pool.

Optional setup:

“Use HDD wakeup” – a script will run which prevents your hard drives from entering sleep mode. “Show winner information” – the account which forges each block will be displayed in the miner console. The info server does not support HTTPS so the address of the local wallet (localhost or 127.0.0.1) and port number 8125 should be provided. “Use multithreading” – Multithreading may improve usage of CPU resources when calculating deadlines.

  • Add your plotfile paths to “My Plotfiles” by clicking on “Import Plotfiles” and locating each plotfile or folder containing plotfiles. The miner will use all plot files that are found in configured folders. It is best if the folders used only contain individual plot files. Plotfiles that are removed using the “Remove Plotfiles” button are not
    deleted from storage, only their path in the list of plot files is removed.
  • To start the miner, click on the “Start mining” button.

When the miner is running, pool and plot file information is displayed in the mining console. The miner receives mining information (block height, base target, etc.) and reads through the configured plot files to locate deadlines. Deadlines found are sent to the pool if they are less than or equal to the configured deadline limit. The miner displays “Confirmed DL” if the deadline is accepted by the pool. After all plot files have been read, the miner displays the amount of time taken to read the plot files.

The miner logs are stored in QBundle/BlagoMiner/Logs. These are useful for debugging purposes. The best deadline found for each block is stored in QBundle/BlagoMiner/stat.csv.

When the miner is running, the console window will appears as follows:

伯布利科因-杰米纳

稳定,性能相容,POC 1,POC 2
突发币-jminer 是 GPU 辅助容量证明 (PoC) 矿工的突发。
主要开发者:去豪华
下载链接: https://github.com/de-luxe/burstcoin-jminer/releases/tag/0.5.2-RELEASE

平台: 视窗、 Linux、 MacOS

爬行矿工

稳定,性能相容,POC 1,POC 2
CreepMiner 是一个客户端应用程序,用于在池或独奏中挖掘突发。 它支持 CPU 挖掘 (SSE2/SSE4/AVX/AVX2) 或 GPU 挖掘(OpenCL、CUDA)。
主要开发人员:克里普斯基
下载链接: https://github.com/Creepsky/creepMiner/releases/tag/1.7.19
平台:视窗、MacOS、Linux x86_64 或 ARM7

泳池软件:

伯斯顿爆炸池

稳定,性能相容,POC 2
这个池软件是由BurstNeon(https://burstneon.com)开发。
主要开发人员:BurstNeon
下载链接: https://github.com/BurstNeon/burst-pool/releases
平台: Linux

诺格罗德

稳定,性能相容,POC 2
Nogrod 是全新的 PoCC 池软件,以 GO 编写。 它提供SSE4 + AVX2支持,基于估计容量的公平共享系统,grpc api,多个钱包作为后端使用钱包API,可以直接与钱包数据库通话,以及基于区块链消息的动态支付阈值/间隔。
主要开发人员:PoC-联盟
下载链接:https://github.com/PoC-Consortium/Nogrod
平台: Linux

dAPPs:

云爆

稳定,性能相容
CloudBurst 是一个分散的云存储应用程序,用于从突发区块链上传和下载文件。
主要开发人员: CurbShifter
下载链接: https://github.com/CurbShifter/CloudBurstDAPP/releases/latest
平台: 视窗、 MacOS

突发优惠券

稳定,性能相容
突发优惠券允许您创建和声明受密码保护的优惠券作为突发区块链的扩展。
主要开发人员: CurbShifter
下载链接: https://github.com/CurbShifter/BurstCoupon/releases/tag/1.19
平台: 视窗、 MacOS

其他工具:

Vanity Address Generator - Included with QBundle

虚荣心地址生成器是创建虚荣心或品牌突发帐户地址的工具。 All address must have “BURST” for the first five leading characters. The capital letter “i” (I), the capital letter “o” (O), zero (0), and the number one (1) are not permitted. To generate a vanity address, enter characters into the form provided. Set the resources that should be used (number of CPU threads) and desired length of the passphrase.

The algorithm which seeks for the account with the desired string is a brute force algorithm, which checks every Burst account and passphrase combination sequentially. The time it takes to find a particular string increases significantly with every additional character. A string of 5 characters at the end takes approximately 4 minutes (more or less depending on computer resources). Each additional character increases the time required exponentially. A string of 8 would take approximately one hour. Longer strings could take weeks.

Image showing the fields in the Burstcoin vanity address generator

Poc1to2 转换器

稳定,POC 1,POC 2
Poc1to2 转换器将 PoC1 图转换为 POC2 图。
主要开发人员: 强尼FFM
下载链接:https://github.com/JohnnyFFM/Poc1to2Converter/releases/tag/tag/v.2.4
平台:窗口

PoC-联盟 Poc1to2 转换器

稳定,POC 1,POC 2
此适用于 Linux 的 Poc1to2 转换器将 PoC1 绘图转换为 POC2 绘图。 有一个生锈二进制转换器(推荐)或perl脚本版本。
主要开发人员:PoC-联盟
下载链接: https://github.com/PoC-Consortium/Utilities
平台: Linux

伯斯汀资源管理器

稳定,性能相容
Burstcoin 资源管理器是突发网络的块资源管理器。
功能包括:

  • 搜索和查看块、帐户和交易记录
  • 保留您正在查看的帐户列表
  • 留意当前突发价格,包括 BTC 和 USD
  • 观察突发网络的当前状态
  • 倒计时即将到来的事件,如前Dymaxion硬叉

主要开发者: 哈里1453
下载链接: https://github.com/harry1453/burstcoin-explorer-android/releases/tag/v1.4


平台: 安卓

突发模组监视器

稳定
在突发区块链上探索未经证实的交易。
主要开发人员:PilotMan 先生
下载链接: https://github.com/MrPilotMan/Burst-MemPool-Monitor
平台:

开发库

爆炸Lib

爆炸Lib

稳定,性能相容
BurstLib 是一个跨平台动态库,使开发与 Burst 区块链兼容的应用程序和工具更加容易。
主要开发人员: 弯曲剂
下载链接:https://github.com/CurbShifter/BurstLib/releases/tag/r16
平台: 视窗、 MacOS、 Linux、 Unix

@burstjs

BURST JavaScript 库,使开发人员能够更轻松地使用角/反应/Node.js/JavaScript 构建应用。 库分为四个包:

  • @burstjs/核心
  • @burstjs/加密
  • @burstjs/http
  • @burstjs/使用。

主要开发人员: blankey1337 (BAT) 和 Ohager (BAT)
文档: https://burst-apps-team.github.io/phoenix/index.html
源代码:https://github.com/burst-apps-team/phoenix/tree/develop/lib
在 NPM: https://www.npmjs.com/search?q=burstjs
平台:跨平台

6 + 15 =