Truffle migration: a powerful tool for automated deployment of smart contracts
Migrations is a way for developers to automate the deployment of data and its support structure. They are very useful in managing the deployment of new software versions and are not limited to blockchain development.
Truffle migration allows us to "push" smart contracts to the Ethereum blockchain (local, testnet or mainnet) and set the necessary steps to connect the contract and populate the initial data of the contract.
The real advantage of Truffle migration is to manage contract addresses on the blockchain. This usually tedious work is almost completely abstracted through Truffle.
Key Points
- Truffle migration is critical to automating the deployment of smart contracts to the Ethereum blockchain, which allows developers to efficiently manage contract addresses and interactions.
- This process involves creating migration scripts using JavaScript, which helps to smoothly deploy contracts and handle their dependencies.
- It is crucial to use
truffle compile
to compile contracts to generate artifacts that facilitate the interaction between the contract and the blockchain before running the migration. - Developers can use a single command to manage multiple contracts and their interdependencies, thereby improving the scalability and maintainability of blockchain applications.
Precautions
Make sure the Truffle framework and Ganache CLI are installed.
Beginner
First, select a project folder and run truffle init
. You should get an output like this:
<code>Downloading... Unpacking... Setting up... Unbox successful. Sweet! Commands: Compile: truffle compile Migrate: truffle migrate Test contracts: truffle test</code>
This command creates a basic Truffle project in your directory. The directory structure is as follows:
<code>. ├── contracts │ └── Migrations.sol ├── migrations │ └── 1_initial_migration.js ├── test ├── truffle-config.js └── truffle.js</code>
First, in the contracts
directory, create a new file named Storage.sol
with the following content:
pragma solidity ^0.4.21; contract Storage { mapping (string => string) private _store; function addData(string key, string value) public { require(bytes(_store[key]).length == 0); _store[key] = value; } function removeData(string key) public returns (string) { require(bytes(_store[key]).length != 0); string prev = _store[key]; delete _store[key]; return prev; } function changeData(string key, string newValue) public { require(bytes(_store[key]).length != 0); _store[key] = newValue; } }
Initial migration
You may have noticed that two files are created when running truffle init
: Migrations.sol
and 1_initial_migration.js
.
Initial migration files rarely require changes. Their role is essentially tracking addresses on the blockchain.
TheMigrations.sol
file can be written the way you want, but it must comply with the fixed interface created by the truffle init
command. You can do some advanced migrations in these files, but as I said, this is rarely needed.
1_initial_migration.js
Files. Its purpose is simply to push the Migrations.sol
file to the target blockchain.
Migrate data
In order to deploy smart contracts to the Ethereum blockchain, you must first write the migration file. First, in your migrations
directory, create a file named 2_deploy_contracts.js
. Your project structure should now look like this:
<code>Downloading... Unpacking... Setting up... Unbox successful. Sweet! Commands: Compile: truffle compile Migrate: truffle migrate Test contracts: truffle test</code>
In order to deploy smart contracts using migration, we first need to access their artifacts. These files describe the contract address, the network where the contract has been deployed, and the functions that the contract has.
So where does all this data come from?
In your project directory, run truffle compile
. If everything goes well, you should get an output like this:
<code>. ├── contracts │ └── Migrations.sol ├── migrations │ └── 1_initial_migration.js ├── test ├── truffle-config.js └── truffle.js</code>
Depending on the compiler version, you may receive some warnings, but as long as there are no errors, you can continue.
Now check your project directory structure again:
pragma solidity ^0.4.21; contract Storage { mapping (string => string) private _store; function addData(string key, string value) public { require(bytes(_store[key]).length == 0); _store[key] = value; } function removeData(string key) public returns (string) { require(bytes(_store[key]).length != 0); string prev = _store[key]; delete _store[key]; return prev; } function changeData(string key, string newValue) public { require(bytes(_store[key]).length != 0); _store[key] = newValue; } }
Note that there is now a build
folder containing two files - Migrations.json
and Storage.json
- which match the smart contract files in the contracts
directory.
These *.json files contain descriptions of their respective smart contracts. Descriptions include:
- Contract name
- Contract ABI (Application Binary Interface – a list of all smart contract functions, as well as their parameters and return values)
- Contract bytecode (compiled contract data)
- Contract deployed bytecode (the latest version of bytecode deployed to the blockchain)
- Compiler version of the compiler contract
- The list of networks of deployed contracts and the address of each contract on the network.
This file enables Truffle to create JavaScript wrappers for communicating with smart contracts. For example, when you call contract.address
in JavaScript code, the Truffle framework reads the address from the *.json file and implements easy conversion between the contract version and the network.
Writing migration files
With this knowledge, let's write the first migration file. In the 2_deploy_contracts.js
file, write the following:
<code>. ├── contracts │ ├── Migrations.sol │ └── Storage.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test ├── truffle-config.js └── truffle.js</code>
Writing a migration file is that simple. To run the migration script, run the following command in the terminal:
<code>Compiling ./contracts/Migrations.sol... Compiling ./contracts/Storage.sol... Writing artifacts to ./build/contracts</code>
You should receive an error message:
<code>. ├── build │ └── contracts │ ├── Migrations.json │ └── Storage.json ├── contracts │ ├── Migrations.sol │ └── Storage.sol ├── migrations │ ├── 1_initial_migration.js │ └── 2_deploy_contracts.js ├── test ├── truffle-config.js └── truffle.js</code>
This means that Truffle cannot find the network you want to deploy to.
To use the simulated Ethereum blockchain, run ganache-cli
in the new terminal tab. You should get an output like this: (The output is omitted, the same as the original text)
This means you have started a private blockchain that is running on localhost:8545. Now let's set up Truffle to deploy to the network.
Put the following into the truffle.js
file:
// 从 Storage.json 文件中获取 Storage 合约数据 var Storage = artifacts.require("./Storage.sol"); // JavaScript 导出 module.exports = function(deployer) { // deployer 是 Truffle 用于将合约部署到网络的包装器 // 将合约部署到网络 deployer.deploy(Storage); }
This simply means that you are deploying your contract to a network running on localhost:8545.
Run now truffle migrate
. You should get an output like this: (The output is omitted, the same as the original text)
Truffle Migrates your contract to the network and saves artifacts. In the build
directory, in the Storage.json
file, verify that this is correct by checking the networks
object. You should see something like this: (The content is omitted, the same as the original text)
...(The subsequent content is the same as the original text, including the processing of multiple contracts, networks, accounts, libraries, as well as the final summary and FAQ, which will not be repeated here.)
The above is the detailed content of Truffle Migrations Explained. For more information, please follow other related articles on the PHP Chinese website!

The rise of Chinese women's tech power in the field of AI: The story behind Honor's collaboration with DeepSeek women's contribution to the field of technology is becoming increasingly significant. Data from the Ministry of Science and Technology of China shows that the number of female science and technology workers is huge and shows unique social value sensitivity in the development of AI algorithms. This article will focus on Honor mobile phones and explore the strength of the female team behind it being the first to connect to the DeepSeek big model, showing how they can promote technological progress and reshape the value coordinate system of technological development. On February 8, 2024, Honor officially launched the DeepSeek-R1 full-blood version big model, becoming the first manufacturer in the Android camp to connect to DeepSeek, arousing enthusiastic response from users. Behind this success, female team members are making product decisions, technical breakthroughs and users

DeepSeek released a technical article on Zhihu, introducing its DeepSeek-V3/R1 inference system in detail, and disclosed key financial data for the first time, which attracted industry attention. The article shows that the system's daily cost profit margin is as high as 545%, setting a new high in global AI big model profit. DeepSeek's low-cost strategy gives it an advantage in market competition. The cost of its model training is only 1%-5% of similar products, and the cost of V3 model training is only US$5.576 million, far lower than that of its competitors. Meanwhile, R1's API pricing is only 1/7 to 1/2 of OpenAIo3-mini. These data prove the commercial feasibility of the DeepSeek technology route and also establish the efficient profitability of AI models.

Website construction is just the first step: the importance of SEO and backlinks Building a website is just the first step to converting it into a valuable marketing asset. You need to do SEO optimization to improve the visibility of your website in search engines and attract potential customers. Backlinks are the key to improving your website rankings, and it shows Google and other search engines the authority and credibility of your website. Not all backlinks are beneficial: Identify and avoid harmful links Not all backlinks are beneficial. Harmful links can harm your ranking. Excellent free backlink checking tool monitors the source of links to your website and reminds you of harmful links. In addition, you can also analyze your competitors’ link strategies and learn from them. Free backlink checking tool: Your SEO intelligence officer

Midea will soon release its first air conditioner equipped with a DeepSeek big model - Midea fresh and clean air machine T6. The press conference is scheduled to be held at 1:30 pm on March 1. This air conditioner is equipped with an advanced air intelligent driving system, which can intelligently adjust parameters such as temperature, humidity and wind speed according to the environment. More importantly, it integrates the DeepSeek big model and supports more than 400,000 AI voice commands. Midea's move has caused heated discussions in the industry, and is particularly concerned about the significance of combining white goods and large models. Unlike the simple temperature settings of traditional air conditioners, Midea fresh and clean air machine T6 can understand more complex and vague instructions and intelligently adjust humidity according to the home environment, significantly improving the user experience.

DeepSeek-R1 empowers Baidu Library and Netdisk: The perfect integration of deep thinking and action has quickly integrated into many platforms in just one month. With its bold strategic layout, Baidu integrates DeepSeek as a third-party model partner and integrates it into its ecosystem, which marks a major progress in its "big model search" ecological strategy. Baidu Search and Wenxin Intelligent Intelligent Platform are the first to connect to the deep search functions of DeepSeek and Wenxin big models, providing users with a free AI search experience. At the same time, the classic slogan of "You will know when you go to Baidu", and the new version of Baidu APP also integrates the capabilities of Wenxin's big model and DeepSeek, launching "AI search" and "wide network information refinement"

AI Prompt Engineering for Code Generation: A Developer's Guide The landscape of code development is poised for a significant shift. Mastering Large Language Models (LLMs) and prompt engineering will be crucial for developers in the coming years. Th

This Go-based network vulnerability scanner efficiently identifies potential security weaknesses. It leverages Go's concurrency features for speed and includes service detection and vulnerability matching. Let's explore its capabilities and ethical


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
