BEVM Canary

When conducting transactions on the BEVM MainNet, BTC is required as gas. The Bitcoin network employs the UTXO model, while the BEVM network utilizes an account model. This implies that the usage paradigms of the two networks are different. However, we ensure that each BTC on the BEVM network originates from the Bitcoin MainNet, and there are comprehensive asset proofs available for querying on both the Bitcoin network and the BEVM network.

The following describes the calculation method of gas fees on the BEVM Preliminary Network:

BEVM transaction fees consist of three components: initial gas, real gas, and refund gas. The following are the calculation methods and their inherent relationships:

initial gas

initial=gas_limit×max_gas_price1010 initial = \dfrac{gas\_limit\times max\_gas\_price}{10^{10}}

real gas

real=gas_used×500000001010real = \dfrac{gas\_used\times50000000}{10^{10}}

refund gas

refund=initialrealrefund = initial-real

When considering the gas price on BEVM Canary (Chain ID: 1501), you might consider establishing it as a default configuration at 0.05 GWei. Regarding the gas limit, you can experiment with it on the BEVM TestNet and subsequently set it as the default on the front end.

If you want to view the actual gas situation for each transaction, you can browse: https://scan-canary.bevm.io/

Last updated