Advanced Search
Search Results
44 total results found
Analysis
Safety The safety of BPX consensus is similar to that of other Nakamoto consensus algorithms like Bitcoin. There is no guaranteed finality, but the more confirmations a transaction has, the safer it is. A transaction needs a certain number of confirmations ...
Multiple Blocks
As you can see, multiple blocks can get infused into the same sub-slot. BPX targets one beacon block every 9.38 seconds on average (32 blocks per sub-slot), and this is adjusted every 4608 blocks (around 12 hours) through the work difficulty algorithm. VDF ...
Introduction
BPX Chain is a new generation Ethereum-compatible blockchain based upon an innovative consensus algorithm, Proof of Space and Time (PoST), originally pioneered by the Chia Network. Proof of Space is a cryptographic technique where farmers prove that they alloc...
Beacon and Execution Chain
BPX comprises two distinct blockchains: the Beacon Chain and the Execution Chain, each responsible for specific tasks, with unique block structures and differing block production intervals. As a result, the peak heights of the Beacon Chain and Execution Chain ...
BPX vs Ethereum
If you are familiar with how Ethereum works, the following tips will help you better understand the BPX Chain: The BPX Execution Chain functions identically to Ethereum’s Execution Chain. The BPX Execution Client is a Go-Ethereum (geth) fork, modified only...
BPX vs Chia
If you are familiar with how Chia works, the following tips will help you better understand the BPX Chain: The BPX Beacon Chain is based on the Chia blockchain architecture, where all transactional and monetary functions have been replaced by a mechanism th...
Setting up Metamask wallet for BPX Chain (Chrome extension)
1. Open MetaMask. Expand the list of available networks. 2. Scroll to the bottom and select "Add a custom network". 3. Fill out the form as follows and click "Save": Network name: BPX ChainDefault RPC URL: https://rpc.bpxchain.ccChain ID: 279Currency ...
Installing and running BPX full node on Windows
1. Download the EXE installers for the latest releases of the Execution Client and Beacon Client. 2. Run the Execution Client installer first. Depending on your Windows version, different warnings may appear. In these cases, click "More info", then select "Ru...
Farming BPX on Windows
1. To start farming BPX, you need a fully synchronized full node. If you don’t have one, follow all the steps of this tutorial, but in the step shown in the screenshot below, choose the Farming Mode instead of Node Mode. Then, proceed directly to the Step 4. ...
Deploying a smart contract on BPX mainnet using Remix IDE
Open Remix IDE. 2. In our example, we will use one of the sample contracts from the IDE. This contract provides two functions: the first, store, allows you to save any number in the contract, while the second, retrieve, enables you to read the stored nu...
Setting up Metamask wallet for BPX Chain (Mobile app)
1. Open MetaMask. Expand the list of available networks. 2. Select "Add Network". 3. Go to the "Custom networks" tab. 4. Fill out the form as follows and confirm: Network name: BPX ChainDefault RPC ...
Installing and running BPX full node on Debian / Ubuntu
Log in as root. Use wget to download the DEB packages for the latest releases of the Execution Client and Beacon Client. Replace X.X.X with the latest versions tags. wget "https://github.com/bpx-chain/bpx-execution-client/releases/download/X.X.X/bpx-execu...
Farming BPX on Debian / Ubuntu
1. To start farming BPX, you need a fully synchronized full node. If you don’t have one, follow all the steps of this tutorial. 2. Log in as the BPX Chain services user, or switch to this account from the root console with the following command: su - bpxchai...
Installing a timelord on Debian / Ubuntu
1. To run a timelord, you need a fully synchronized full node. If you don’t have one, follow all the steps of this tutorial. 2. The timelord software is not included in the official binary .deb or .rpm releases. You need to build it from the source code. Log ...
Setting up a private RPC server on Debian / Ubuntu
Set up and sync your BPX Chain full node following this guide. When creating the execution client systemd service, add some new parameters to the bpx-geth command line: ExecStart=bpx-geth --syncmode snap --http --http.api web3,eth,net --http.corsdomain "*...