
Deploying a Smart Contract on ConsenSys zkEVM: A Step-by-Step Guide📃
In this article, you will discover the process of deploying a smart contract on the ConsenSys zkEVM testnet. Whether a beginner or an experienced developer, this guide will walk you through the necessary steps. If you are new to ConsenSys zkEVM, it is recommended that you first try the Beta Testnet before proceeding further. https://mirror.xyz/dimochie.eth/oDlBR1nfeJh4rXgJGO9eM1PuWuyEBwx3gy6TJQuA4gs Let's get started! Begin by accessing the Remix toolset 👇🏻 Remix is a comprehensive sui...

AltLayer Launches Multi-Sequencer Rollup on TestNet: Claim Multi Sequencer OAT.
AltLayer is a blockchain company based in Singapore that offers a distinctive rollup-as-a-service platform for developers of decentralized applications. The platform was created by Dr. Yaoqi Jia, one of the co-founders of Zilliqa, to design highly scalable and adaptable execution environments customized to particular applications.The platform functions like a collection of autonomous optimistic rollups that draw security from an underlying Layer 1 or Layer 2 blockchain, such as Ethereum, Arbi...

Supra: Confirmed Airdrop - Cross-Chain Interlayer Empowering Web2 and Web3.
Discover Supra, the revolutionary cross-chain interlayer that empowers seamless automation across both web2 and web3 ecosystems. With highly secure and scalable smart contract interoperability, SupraOracles facilitates near-instant data availability between these realms, overcoming the limitations of traditional Oracle networks.Optimized for Consumers and Enterprises: SupraOracles is designed to cater to the needs of both individual users and large enterprises. Its cutting-edge technology ens...
NFTs, Testnet, Airdrops, and all things web3

Deploying a Smart Contract on ConsenSys zkEVM: A Step-by-Step Guide📃
In this article, you will discover the process of deploying a smart contract on the ConsenSys zkEVM testnet. Whether a beginner or an experienced developer, this guide will walk you through the necessary steps. If you are new to ConsenSys zkEVM, it is recommended that you first try the Beta Testnet before proceeding further. https://mirror.xyz/dimochie.eth/oDlBR1nfeJh4rXgJGO9eM1PuWuyEBwx3gy6TJQuA4gs Let's get started! Begin by accessing the Remix toolset 👇🏻 Remix is a comprehensive sui...

AltLayer Launches Multi-Sequencer Rollup on TestNet: Claim Multi Sequencer OAT.
AltLayer is a blockchain company based in Singapore that offers a distinctive rollup-as-a-service platform for developers of decentralized applications. The platform was created by Dr. Yaoqi Jia, one of the co-founders of Zilliqa, to design highly scalable and adaptable execution environments customized to particular applications.The platform functions like a collection of autonomous optimistic rollups that draw security from an underlying Layer 1 or Layer 2 blockchain, such as Ethereum, Arbi...

Supra: Confirmed Airdrop - Cross-Chain Interlayer Empowering Web2 and Web3.
Discover Supra, the revolutionary cross-chain interlayer that empowers seamless automation across both web2 and web3 ecosystems. With highly secure and scalable smart contract interoperability, SupraOracles facilitates near-instant data availability between these realms, overcoming the limitations of traditional Oracle networks.Optimized for Consumers and Enterprises: SupraOracles is designed to cater to the needs of both individual users and large enterprises. Its cutting-edge technology ens...
NFTs, Testnet, Airdrops, and all things web3

Subscribe to The Block Capsule

Subscribe to The Block Capsule
Share Dialog
Share Dialog
<100 subscribers
<100 subscribers


In this blog post, discover the process of deploying a smart contract on the Scroll Testnet, including essential steps. If you're new to Scroll, it's recommended first to test the Scroll Alpha Testnet below.
https://twitter.com/theblockcapsule/status/1631015165465440257
Also, don’t forget to claim your Scrollzkp mystery role
Learn how to deploy a smart contract on the Scroll Testnet by following these simple steps:
Step 1: Access Remix, Remix is a powerful toolset to develop, deploy, debug, and test Ethereum and EVM-compatible smart contracts.
Create a new workspace.

Rename your new workspace.

Step 2: Deploy Contracts
Create a new file under the "Contracts" folder by providing a name ending with the ".sol" extension.

Paste the code below into the contract box.
pragma solidity 0.8.80;
// SPDX-License-Identifier: MIT
contract Theblockcapsule {
string public name = "Scroll Contract";
string public symbol = "SC";
uint8 public decimals = 18;
uint256 public totalSupply = 100000000;
mapping (address => uint256) public balances;
address public owner;
constructor() {
owner = msg.sender;
balances[owner] = totalSupply;
}
function transfer(address recipient, uint256 amount) public {
require(balances[msg.sender] >= amount, "Insufficient balance.");
balances[msg.sender] -= amount;
balances[recipient] += amount; }
}

Click “ok”

Modify the contract's name and symbol according to your preference.

Proceed to the "Solidity Compiler" page and click the "Compile" button.

Assuming there are no errors, a green check mark will appear.

Go to the "Deploy" page, select "Injected Provider," and then click the "Deploy" button.
Ensure you have the Scroll testnet added to your Metamask wallet. If not, click here for the tutorial first.

Once you click the "Deploy" button, Metamask will prompt you to confirm the transaction. After a successful transaction, you can view your deployed contract on the lower left-hand side of the screen.

Celebrate your success! 🎉🚀 You've just deployed a contract on the Scroll Alpha Testnet, which could be an invaluable asset once Scroll launches on the mainnet. Great job!
Join us on Telegram to stay updated on Scroll airdrop and more. That's all for now.
We hope you have enjoyed our latest posts and found them informative and helpful. We are committed to providing valuable and informative content for our subscribers.
As a small team, we rely on your support to continue creating quality content for you. We would appreciate it if you could help us by collecting our posts and sharing them with your network. This will help us reach a wider audience and encourage us to produce more valuable content.
We believe that working together can create a more informed and knowledgeable community. So please join us in this effort and collect our posts to support our work.
Thank you for your continued support!
In this blog post, discover the process of deploying a smart contract on the Scroll Testnet, including essential steps. If you're new to Scroll, it's recommended first to test the Scroll Alpha Testnet below.
https://twitter.com/theblockcapsule/status/1631015165465440257
Also, don’t forget to claim your Scrollzkp mystery role
Learn how to deploy a smart contract on the Scroll Testnet by following these simple steps:
Step 1: Access Remix, Remix is a powerful toolset to develop, deploy, debug, and test Ethereum and EVM-compatible smart contracts.
Create a new workspace.

Rename your new workspace.

Step 2: Deploy Contracts
Create a new file under the "Contracts" folder by providing a name ending with the ".sol" extension.

Paste the code below into the contract box.
pragma solidity 0.8.80;
// SPDX-License-Identifier: MIT
contract Theblockcapsule {
string public name = "Scroll Contract";
string public symbol = "SC";
uint8 public decimals = 18;
uint256 public totalSupply = 100000000;
mapping (address => uint256) public balances;
address public owner;
constructor() {
owner = msg.sender;
balances[owner] = totalSupply;
}
function transfer(address recipient, uint256 amount) public {
require(balances[msg.sender] >= amount, "Insufficient balance.");
balances[msg.sender] -= amount;
balances[recipient] += amount; }
}

Click “ok”

Modify the contract's name and symbol according to your preference.

Proceed to the "Solidity Compiler" page and click the "Compile" button.

Assuming there are no errors, a green check mark will appear.

Go to the "Deploy" page, select "Injected Provider," and then click the "Deploy" button.
Ensure you have the Scroll testnet added to your Metamask wallet. If not, click here for the tutorial first.

Once you click the "Deploy" button, Metamask will prompt you to confirm the transaction. After a successful transaction, you can view your deployed contract on the lower left-hand side of the screen.

Celebrate your success! 🎉🚀 You've just deployed a contract on the Scroll Alpha Testnet, which could be an invaluable asset once Scroll launches on the mainnet. Great job!
Join us on Telegram to stay updated on Scroll airdrop and more. That's all for now.
We hope you have enjoyed our latest posts and found them informative and helpful. We are committed to providing valuable and informative content for our subscribers.
As a small team, we rely on your support to continue creating quality content for you. We would appreciate it if you could help us by collecting our posts and sharing them with your network. This will help us reach a wider audience and encourage us to produce more valuable content.
We believe that working together can create a more informed and knowledgeable community. So please join us in this effort and collect our posts to support our work.
Thank you for your continued support!
No activity yet