This article is sponsored and created by iOlite. Thank you for supporting the partners who made SitePoint possible.
Solidity is a relatively new language that contains issues related to the code and its intended use because there is no perfect code. This article will guide you best practices and pitfalls when using random numbers as input to Ethereum smart contracts.
Key Points
- Solidity language itself cannot generate true random numbers due to its deterministic nature and the high cost of complex algorithms. Developers need to be aware that in some cases, an attacker can predict the results.
- A common way to generate pseudo-random numbers in Solidity is to use the Linear Congruence Generator (LCG) algorithm. However, it does not work for password security applications, and relying on
block.timestamp
andblock.difficulty
, miners can manipulate these values. - Chainlink VRF (Verified Random Function) provides a solution to generate proven random numbers in Solidity. It uses on-chain randomness checking and password mixing to ensure that the numbers are truly random numbers.
- Other mechanisms for generating random numbers include: Ethereum alarm clocks for scheduling transactions; using APIs like Random.org that provide random data sources; RANDAO projects that provide random numbers by combining oracles and smart contracts; and using Natural Language creates iOlite for smart contracts.
Solidity Random Number Generation
Solidity Unable to create random numbers. In fact, all algorithms that create random numbers are pseudo-random—no language can create completely random numbers. The problem with Solidity is that complex algorithms are too expensive and therefore a more basic solution is used. Apart from that, the Solidity code should be deterministic, as it will run on multiple nodes. We need an algorithm that can generate a random number at once and use it on multiple nodes. Information such as clock time is not available to generate random numbers, so we have to look for other options. As a developer, you should be aware of this problem because an attacker is able to predict results in certain situations.
One of the most commonly used algorithms is the "Linear Congruence Generator" (LCG). It is one of the oldest algorithms, fast and easy to understand. LCGs are a good choice for embedded systems because they only have limited memory. However, it does not work with password security applications. Nevertheless, it is still used in smart contracts, as fast algorithms are cheaper in terms of gas costs.
The algorithm itself performs the following steps:
- Accept input
- Execute algorithm on input
- Get the modulus of the output (divided by the maximum number in the desired range)
- Output 0 to the value between the maximum number in the desired range
Let's explore different ways to create random numbers using the lottery smart contract example. Users can join the lottery by sending 0.1 Ether to the contract and an integer between 0 and 250.
-
block.timestamp
&block.difficulty
Whenever the miner confirms a transaction, a block.timestamp
is assigned. No player on our lottery contract can control it. Let's take a look at this code used to create random numbers.
function random() private view returns (uint8) { return uint8(uint256(keccak256(block.timestamp, block.difficulty))%251); }
Find Gist here.
This code first hash the block timestamp and difficulty. Next, we convert the hash value to an integer and divide it by 251 to get an integer between 0 and 250. However, the problem with this code is that we should not trust miners to choose the winner.
-
Lottery input—any data
We need more arbitrary data to select our winner. We can use the address of the players who have entered our lottery smart contract, but we have to hide it because they may abuse it. Since all information is recorded on the blockchain, this information cannot be hidden.
The numbers that can be submitted to our lottery smart contract. Users must have the hashing number they selected with their Ethereum address. This gives us a pretty random number.
-
Chainlink VRF
With that being said, randomness is possible, but you just need to use an oracle to get the random number from outside the blockchain. The problem with using external data is that it is very difficult to prove that the number is actually random and to ensure that the off-chain entity does not manipulate the random number in any way. This is where Chainlink VRF comes into play. Chainlink VRF (Verified Random Function) is how we get proven random numbers in Solidity.
Chainlink VRF Adds an event to the blockchain from which the Chainlink node reads the event and returns a random number. On-chain randomness checks are performed through the so-called VRF coordinator. This uses a specific key hash from the oracle and a seed phrase from the user, as well as some cryptography to ensure that the number is a true random number. In this way, we can get an unbiased random number.
-
Other mechanisms
4.1 Ethereum alarm clock
Developers need to consider when to choose a winner. Information such as clock time is not available in the Ethereum virtual machine, because the code will run at different times on multiple nodes. This makes it more difficult to choose the winner. One way is to implement a function in your smart contract that will turn off the lottery and select the winner. This is not as decentralized as we would have hoped. The owner of the contract can close the lottery when it is determined that their friend will win. We must avoid this kind of cheating.
A better option is to use the Ethereum alarm clock. It is a service that allows scheduling transactions to be executed later on the Ethereum blockchain. This service is completely trustless, which means the entire service runs as a smart contract. Basically, the Ethereum alarm uses block numbers to schedule transactions. Note that this does not mean that the contract will start on its own. It relies on the user's interest in calling the "Select Winner" function (Ether reward). Of course, if no one calls your function, your lottery will fail.
4.2 Random data input
Random.org provides an API that provides a random data source through JSON. Ethereum smart contracts can use this data source to feed algorithms for selecting random numbers. Because security is important, digital signatures can be used. Random data will be signed by Random.org. You can verify the integrity of the data so you can prove that it is indeed from Random.org and that the data has not been tampered with.
RANDAO is a new project in the blockchain field, focusing entirely on providing random numbers. They use a combination of oracles and smart contracts to give you random numbers. However, RANDAO services are currently very slow. If you have an app that you use frequently, this is not ideal.
4.3 Block Number Monitor
You can also use a monitor in your code that checks the block number until it matches the target number you set.
function random() private view returns (uint8) { return uint8(uint256(keccak256(block.timestamp, block.difficulty))%251); }
Source. Gist.
4.4 iOlite smart contract creation
iOlite is creating a product that accepts natural language to create smart contracts. It uses the Stanford Natural Language Processing (NLP) engine, called the Fast Adaptation Engine (FAE). iOlite relies on Solidity experts for community training. A Solidity expert (contributor) can define a structure containing one or more sentences and append it to the corresponding smart contract code.
The Stanford NLP engine is designed to understand complex languages. The complexity of the language depends on the amount of machine training. After proper training, the engine will be able to create complex smart contracts. FAE is able to create such contracts because complex contracts are not actually that complicated. Experts can split the request into multiple smaller snippets of code and append it to a sentence.
When someone enters multiple sentences, it will look for the corresponding structure/sentence to build a "complex" contract. Contributors will receive iOlite token rewards through the mining process of the new structure.
The advantage of using iOlite is that smart contract experts can solve problems such as random number generation for you. You can find more information at iOlite.io.
Conclusion
As you can see, generating true random input is not easy. Don't rely on block.timestamp
, now
and block.blockhash
as sources of randomness. A good solution includes combining several pseudo-random data inputs and using oracles or smart contracts to make it more reliable. You need to be 100% sure no one can tamper with the data entered into the smart contract.
Please be careful and think twice before implementing random number generation logic.
FAQ for Random Number Generation in Solidity (FAQ)
Why is it difficult to generate random numbers in Solidity?
Solidity (the programming language used to write Ethereum smart contracts) does not have built-in functions to generate random numbers. This is because blockchain (the basic technology of Ethereum) is essentially deterministic. This means that given a set of inputs, the output will always be the same. This certainty is crucial to maintaining the integrity and security of the blockchain. However, it makes generating true random numbers a challenge, because the concept of randomness is inherently nondeterministic.
What are the common methods to generate random numbers in Solidity?
Developers use several methods to generate pseudo-random numbers in Solidity. A common method is to use the keccak256 hash function, whose input is difficult to predict, such as the current block timestamp and block difficulty. Another approach is to use an oracle service that provides random numbers from off-chain sources. However, each approach has its own limitations and potential security risks.
What are the risks of using the keccak256 hash function to generate random numbers?
Although the keccak256 hash function can be used to generate pseudo-random numbers, it poses some potential security risks. Since inputs to hash functions such as current block timestamps and block difficulty are publicly available on the blockchain, malicious miners may manipulate these values to affect the output generated by random numbers.
How to generate random numbers in Solidity using oracle service?
Original Services can provide random numbers from off-chain sources. These services act as a bridge between the blockchain and the outside world, allowing smart contracts to interact with data that is not available to the blockchain itself. However, using oracle services introduces a level of trust, because smart contracts must rely on oracles to provide accurate and unbiased random numbers.
Commitment-What is the role of revealing schemes in generating random numbers?
Commitment-Revealing scheme is a way to generate random numbers in a decentralized and secure way. In the Commitment-Revealing Scheme, participants first commit a secret number, and then all secret numbers are revealed at the same time, and a random number is generated based on these secrets. This approach prevents any single participant from being able to influence the output generated by random numbers.
Why is it important to generate true random numbers in smart contracts?
Real random numbers are crucial for many types of smart contracts, such as those used for games of chance, lottery, and other applications that require randomness. If the random numbers used in these contracts can be predicted or affected, it can lead to unfair results and even allow malicious actors to exploit the contract.
Can the blockhash function be used to generate random numbers in Solidity?
The blockhash function in Solidity can be used to generate pseudo-random numbers. This function returns the hash value of the given block number, which is unpredictable and varies with each block. However, this method has its limitations. For example, the blockhash function only works on the most recent 256 blocks, and the blockhash of future blocks cannot be known before mining.
What are the limitations of using the current block timestamp to generate random numbers?
There is a major limitation to using the current block timestamp as input to generate random numbers. Miners have some influence on the timestamps of blocks they mine, meaning they may manipulate the timestamps to affect the output generated by random numbers.
How to generate random numbers using RANDAO beacon?
RANDAO (Random Number DAO) beacon is a decentralized and transparent way to generate random numbers. Participants in the RANDAO beacon promise secret numbers, which are then revealed and combined to generate a random number. This approach is designed to prevent any single participant from being able to influence the output generated by random numbers.
Are there any upcoming improvements or proposals for generating random numbers in Solidity?
Research and proposals on improving random number generation in Solidity and other blockchain platforms are underway. For example, Ethereum 2.0 (an upcoming upgrade to the Ethereum network) is expected to include a built-in random number generator. However, before these improvements are implemented, developers must continue to use existing approaches and their inherent limitations and potential security risks.
The above is the detailed content of Solidity Pitfalls: Random Number Generation for Ethereum. 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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version
Visual web development tools

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
