CrypLogger.com
  • Home
  • Exclusive
  • Learn About Coins
  • Artificial Intelligence
  • Forecasts
  • News
  • Opinions
  • Current Prices
No Result
View All Result
  • Home
  • Exclusive
  • Learn About Coins
  • Artificial Intelligence
  • Forecasts
  • News
  • Opinions
  • Current Prices
No Result
View All Result
CrypLogger
No Result
View All Result
Home Exclusive

Switch to the fast side: how to transfer an application from the EVM chain to Velas

by Vaibhav
May 18, 2022
in Exclusive
0
Switch to the fast side: how to transfer an application from the EVM chain to Velas
190
SHARES
1.5k
VIEWS
Share on FacebookShare on Twitter

Ethereum and EVM have become the de facto standard for building decentralized applications. Developers dapps use the Ethereum virtual machine so as not to reinvent the wheel. But EVM chains often inherit the Ethereum consensus algorithm, as well as its low throughput and high transaction fees.

Creators Velas solved the problem of speed and cost of transactions: this blockchain works on Solana technologies and is compatible with the EVM. By changing just one line of code, developers can port their project to Velas. We explain how to do it.

Why transfer the project to Velas

One of the problems with Ethereum and most EVM chains is the low throughput and high transaction fees that limit users with small deposits. According to BitinfoChartsthe average transaction fee in the network of the second cryptocurrency is $11.

Developers are migrating to cheaper blockchains. For example, Tether issued USDT stablecoin on Tron and other blockchainsto expand the audience and make it more accessible to users.

How Velas works with two virtual machines at the same time

The Velas blockchain uses a hybrid Proof-of-History/Proof-of-Stake consensus algorithm. It is based on Solana technologies, thanks to which the network throughput exceeds 50,000 transactions per second (Transactions Per Second, TPS). With this TPS, transaction fees are around $0.0001.

Network nodes wrap EVM transactions in the native eBPF format and add an instruction to them to call the transpiler program. Then they collect transactions into virtual blocks, and them into separate EVM blockchain.

Also Velas nodes support standard methods Ethereum JSON-RPC API like eth_getBalance or eth_getBlockByNumber. These methods access the EVM blockchain.

For the execution of transactions, users pay fees in native VLX tokens. Such transactions reach finality after three confirmations in the native blockchain – on average after 1.2 seconds.

Transfer of tokens in VelasEVM. The transaction was confirmed after 1.286 seconds, the commission was $0.000151.

As a result, applications on Velas run much faster and cheaper than on other EVM blockchains.

See also  Bitcoin mining in 2021: the Chinese ban changed the balance of power

In addition, when migrating to Velas, developers can do without a re-audit of smart contracts, because their code does not change.

How to transfer a dapp or smart contract to the Velas blockchain

To deploy a smart contract on Solidity in Velas, you only need to replace the RPC provider link with evmexplorer.velas.com/rpc.

For example, when using the Web3 library:

const web3 = new Web3(
new Web3.providers.HttpProvider(‘https://blockchain-rpc’));

on the:

const web3 = new Web3(
new Web3.providers.HttpProvider(’https://evmexplorer.velas.com/rpc’));

If you use hardhat or Truffle for deployment, replace in config.js:

url: "https://blockchain-rpc",
chainId: “*”,

on the:

url: "https://evmexplorer.velas.com/rpc",
chainId: 106,

To test the work of contracts in Velas, you need to insert testnet RPC.

To deploy contracts, you will need to pay transaction fees in VLX tokens. They are traded on Uniswap and centralized exchanges: Bittrex, KuCoin, Gate.io and others. The full list of spot pairs with VLX is presented on CoinMarketCap.

The Velas network can be added to the MetaMask wallet. To do this, go to network settings, click Add a network and fill in the fields:

  • network name – Velas;
  • RPC URL – https://evmexplorer.velas.com/rpc;
  • Chain ID – 106;
  • Symbol – VLX;
  • Browser – https://evmexplorer.velas.com.

findings

Developers Velas found a way to speed up EVM applications by wrapping and running them in the Solana format. This solution allows you to finalize transactions within 1.2 seconds with commissions of one hundredth of a cent.

Velas’ EVM compatibility simplifies application migration. The developer only needs to replace the reference to the RPC provider in the deployment script. There is no need for costly adaptation of the code to the instructions of another virtual machine, re-testing and auditing.

Subscribe to Cryplogger news in Telegram: Cryplogger Feed – the entire news feed, Cryplogger — the most important news, infographics and opinions.

Found a mistake in the text? Select it and press CTRL+ENTER

Related articles

The AIFC spoke about the preliminary results of the “pilot” between bitcoin exchanges and banks in Kazakhstan

The AIFC spoke about the preliminary results of the “pilot” between bitcoin exchanges and banks in Kazakhstan

March 19, 2023
NFT constructor that allows you to create anything

NFT constructor that allows you to create anything

March 19, 2023

Ethereum and EVM have become the de facto standard for building decentralized applications. Developers dapps use the Ethereum virtual machine so as not to reinvent the wheel. But EVM chains often inherit the Ethereum consensus algorithm, as well as its low throughput and high transaction fees.

See also  How to get the most out of passive income from stablecoins: an overview of the Coinchange platform

Creators Velas solved the problem of speed and cost of transactions: this blockchain works on Solana technologies and is compatible with the EVM. By changing just one line of code, developers can port their project to Velas. We explain how to do it.

Why transfer the project to Velas

One of the problems with Ethereum and most EVM chains is the low throughput and high transaction fees that limit users with small deposits. According to BitinfoChartsthe average transaction fee in the network of the second cryptocurrency is $11.

Developers are migrating to cheaper blockchains. For example, Tether issued USDT stablecoin on Tron and other blockchainsto expand the audience and make it more accessible to users.

How Velas works with two virtual machines at the same time

The Velas blockchain uses a hybrid Proof-of-History/Proof-of-Stake consensus algorithm. It is based on Solana technologies, thanks to which the network throughput exceeds 50,000 transactions per second (Transactions Per Second, TPS). With this TPS, transaction fees are around $0.0001.

Network nodes wrap EVM transactions in the native eBPF format and add an instruction to them to call the transpiler program. Then they collect transactions into virtual blocks, and them into separate EVM blockchain.

Also Velas nodes support standard methods Ethereum JSON-RPC API like eth_getBalance or eth_getBlockByNumber. These methods access the EVM blockchain.

For the execution of transactions, users pay fees in native VLX tokens. Such transactions reach finality after three confirmations in the native blockchain – on average after 1.2 seconds.

See also  The era of sanctions: will cryptocurrencies become an alternative to banks and the dollar in Russia
Transfer of tokens in VelasEVM. The transaction was confirmed after 1.286 seconds, the commission was $0.000151.

As a result, applications on Velas run much faster and cheaper than on other EVM blockchains.

In addition, when migrating to Velas, developers can do without a re-audit of smart contracts, because their code does not change.

How to transfer a dapp or smart contract to the Velas blockchain

To deploy a smart contract on Solidity in Velas, you only need to replace the RPC provider link with evmexplorer.velas.com/rpc.

For example, when using the Web3 library:

const web3 = new Web3(
new Web3.providers.HttpProvider(‘https://blockchain-rpc’));

on the:

const web3 = new Web3(
new Web3.providers.HttpProvider(’https://evmexplorer.velas.com/rpc’));

If you use hardhat or Truffle for deployment, replace in config.js:

url: "https://blockchain-rpc",
chainId: “*”,

on the:

url: "https://evmexplorer.velas.com/rpc",
chainId: 106,

To test the work of contracts in Velas, you need to insert testnet RPC.

To deploy contracts, you will need to pay transaction fees in VLX tokens. They are traded on Uniswap and centralized exchanges: Bittrex, KuCoin, Gate.io and others. The full list of spot pairs with VLX is presented on CoinMarketCap.

The Velas network can be added to the MetaMask wallet. To do this, go to network settings, click Add a network and fill in the fields:

  • network name – Velas;
  • RPC URL – https://evmexplorer.velas.com/rpc;
  • Chain ID – 106;
  • Symbol – VLX;
  • Browser – https://evmexplorer.velas.com.

findings

Developers Velas found a way to speed up EVM applications by wrapping and running them in the Solana format. This solution allows you to finalize transactions within 1.2 seconds with commissions of one hundredth of a cent.

Velas’ EVM compatibility simplifies application migration. The developer only needs to replace the reference to the RPC provider in the deployment script. There is no need for costly adaptation of the code to the instructions of another virtual machine, re-testing and auditing.

Subscribe to Cryplogger news in Telegram: Cryplogger Feed – the entire news feed, Cryplogger — the most important news, infographics and opinions.

Found a mistake in the text? Select it and press CTRL+ENTER

Share76Tweet48

Related Posts

The AIFC spoke about the preliminary results of the “pilot” between bitcoin exchanges and banks in Kazakhstan

The AIFC spoke about the preliminary results of the “pilot” between bitcoin exchanges and banks in Kazakhstan

by Vaibhav
March 19, 2023
0

In the spring of 2018, the Astana International Financial Center (AIFC) developed and approved the Concept for Regulation of the...

NFT constructor that allows you to create anything

NFT constructor that allows you to create anything

by Vaibhav
March 19, 2023
0

In November 2021, a startup RMRK (read “remark”) introduced the NFT standards set of the same name, which allows tokens...

how NFTs are changing the user experience on social media

how NFTs are changing the user experience on social media

by Vaibhav
March 19, 2023
0

In early November, the Subsocial platform released the Spacers NFT collection of the RMRK 2.0 standard, which allows you to...

the world can no longer ignore cryptocurrencies

the world can no longer ignore cryptocurrencies

by Vaibhav
March 19, 2023
0

The unstable macroeconomic situation along with the collapse of FTX and Alameda Research provoked a crisis in the industry. This...

Bitcoin and other cryptocurrencies in our lives: survey results

Bitcoin and other cryptocurrencies in our lives: survey results

by Vaibhav
March 19, 2023
0

In 2022, 1627 people took part in the survey conducted by Cryplogger. As promised, we share the results and talk...

Load More

Recent News

  • Fujitsu to Offer Cryptocurrency Trading Services
  • Binance Gets Registered in Sweden
  • Apple to Release Metaverse – Reality Pro Headset: Device Details
  • Cryptocurrency exchange Binance launches new regional hub in Georgia
  • Do Kwon to appeal decision to extend arrest
  • El Salvador passed the law on “volcano bonds”
  • BlackRock to lay off about 500 workers
  • ARK Invest increased positions in Block and Coinbase
  • Binance plans to increase headcount by 30% in 2023
  • January 12 – Day of the first Bitcoin transaction
  • Kokomo Finance team suspected of $4 million exit scam
  • Gala Games announces partnership with Dwayne “The Rock” Johnson and…
  • Terraform Labs co-founder comes to South Korea’s radar after Do Kwon’s arrest
  • The Ministry of Justice launched an investigation against the creators of Saber Labs
  • Avalanche developers will be able to deploy nodes directly to AWS
  • First Citizens BancShares buys out part of Silicon Valley Bank
  • Samsung Launches Bitcoin ETF on Hong Kong Exchange
  • Urgent: First Citizens buys Silicon Valley Bank – branches open on Monday
  • Gemini officially ends the Earn program
  • FTX “suddenly found” $5 billion

Follow Us On Twitter

  • Home
  • About Us
  • CCPA
  • Contact Us
  • DMCA
  • Privacy Policy
  • Terms of Use
Email: contact@cryplogger.com

© 2021-23 Cryplogger.com
CrypLogger is a cult magazine about bitcoin, blockchain technology and the digital economy. Every day we supply news and analytics on the cryptocurrency market since 2021.

No Result
View All Result
  • Home
  • Artificial Intelligence
  • Forecasts
  • News
  • Opinions

© 2021-23 Cryplogger.com
CrypLogger is a cult magazine about bitcoin, blockchain technology and the digital economy. Every day we supply news and analytics on the cryptocurrency market since 2021.

Go to mobile version