Deploy Contracts
The
Acala EVM Playground
is useful to test various functionalities of Acala EVM. It’s a fork from parity canvas-ui
.To deploy your smart contract you can use our testnet or you can run your local dev node.
To run your own development network, you can follow the instructions on setting up your own development network in the official EVM+ documentation.
Once your development network is operational, you can connect your EVM wallet to it by using the following parameters:
Name | Mandala |
URL | http://127.0.0.1:8545 |
Chain ID | 595 |
WS endpoint URL | ws://127.0.0.1:9944 |
Symbol | ACA |
You can reference the instructions on how to connect MetaMask to the EVM+ and substitute the values from instructions with the values from above.
To deploy to our test network you need to have the polkadot{.js} wallet extension installed in your browser.
Once you have the extension installed, you can bind your accounts with an EVM address and get test network funds from the Discord faucet.
Note: For the remainder of this page we will assume you are using a local development network. If you are deploying to the test network.
To deploy a smart contract using EVM playgrounds, you need to compile your smart contract in your preferred development framework so that you have the ABI bundle available to upload.
In case you want to use the same smart contract as it is used in this example, you can follow these short instructions on how to create it.
First clone the Acala Hardhat tutorials example:
git clone [email protected]:AcalaNetwork/hardhat-tutorials.git
Move into the examples repository and into the
token
example:cd hardhat-tutorials/token
Within the example directory, install all of the dependencies and compile the smart contracts:
yarn && yarn build
This will compile the
Token
smart contract and create an ABI bundle to the directory artifacts/contracts/Token.sol/
the bundle file is called Token.json
.Go to the
Upload
tab.
EVM playground => Upload
Assign the
Name
of your smart contract. You will be able to identify the smart contract in the Deploy
tab with it, once it gets uploaded.To upload the ABI bundle itself, you can either drag and drop it into the upload section, or click on the section and select the file.

EVM playgrounds => Upload => Add file
Once you have selected the correct ABI bundle, the methods of the smart contract should be displayed. You can verify that the correct methods are listed and press
Upload
to upload the ABI bundle.The ABI bundles that you uploaded in the
Upload
tab can be seen here:
EVM playgrounds => Deploy
The methods available for an ABI bundle can be seen by expanding the
ABI
menu. This can be helpful if you have multiple bundles uploaded and you want to be sure that you will be interacting with the right one.
EVM playgrounds => Deploy => Expand ABI section
When you have verified that you are interacting with the ABI bundle that has the correct methods available, you can click
Deploy
, which should open a deployment interface:
EVM playgrounds => Deploy => Deploy selected ABI bundle
The interface consists of the following components:
- Button to connect to your EVM wallet (this is why connecting MetaMask to the EVM+ is a prerequisite for this entry)
- Smart contract name, that can be changed, so you can deploy the same ABI bundle multiple times and easily differentiate between them
- ABI bundle identifications
- Fields to input the smart contract constructor parameters
- Value field to determine wether to send some of the native currency with the deploy transaction
Deploy
button to deploy the smart contract once you are satisfied with the deployment parameters
Pressing the
button will prompt your EVM wallet to connect to the site. You can select the account that you want to use with the EVM playgrounds and connect it.



The selected account should be displayed at the top of the page now:

Displayed deployment account
Depending on the requirements, you can modify the deployment parameters of your smart contract. It is required to fill out the constructor parameters, but modifying other values is optional.

Filled out deployment values
Once the values are filled out and double checked, the smart contract is ready to be deployed.
The
validUntil
field value has to be higher than the current block number, or the deployment transaction will fail, due to the validator treating it as outdated. You can verify the current block number in a block explorer.Once the parameters of deployment are ready, you can deploy the smart contract by pressing the
Deploy
button. This should prompt your EVM wallet to confirm your deployment transaction:

Confirming the deployment transaction
Once the transaction is included in a block, the deployed smart contract can be found under
Execute
tab.Navigate to the
Execute
tab. Find the deployed ExampleToken
contract and Click the Execute
button on the bottom of the "ExampleToken" box.To perform a query on an account's balance, do the following steps:
- 1.Make sure that the account you used to deploy the smart contract is connected to the
EVM playgrounds
. - 2.Pick
balanceOf
from theMessage to Send
dropdown. - 3.Copy and paste the address of the account that you used to deploy the smart contract to the
account: address
input.

Filled out balance query
Note: Solidity smart contracts have two types of methods:
views
and executable
methods.Views
are used to query information from the blockchain without writing data to it.Views
transactions are free. The Playground uses theCall
button to indicate this.Executable
methods can write data onto the blockchain, and these transactions aren’t free. Click theExecute
button to execute it.
Finally, click
Call
at the bottom, and Call results
should show the ExampleToken balance of 123456789
.
Completed balance query
Now let's try transferring ExampleTokens to another account.
- 1.Make sure that the deployer account is connected to the EVM playgrounds.
- 2.Select
transfer
from theMessage to Send
dropdown. - 3.Fill out the
recipient address
input box with another EVM address to which to send the tokens. - 4.Enter transfer amount in the
amount: unit256
argument box, note the token has a standard 18 decimals. - 5.Click
Execute
.

Filled out token transaction
A notification will pop-up to confirm that the transaction is successfully executed.
Now you can check the balances of both of the accounts, and confirm that they have changed. deployer's account:

Deployer's balance
Other account:

Other account's balance
Last modified 9mo ago