Smart contracts

What is a smart contract?

A smart contract (opens in a new tab) is defined as follows by the ICON glossary:

Blockchain-integrated code for maintaining and interacting with data in a trusted, distributed database

They are represented by a specific type of ICON account (opens in a new tab), and can be distinguished by the prefix to the account address of cx. Smart contract accounts are deployed to the network and run in a deterministic manner based on their code. As such, they are not controlled by a user and a user cannot conduct manual actions that would override the smart contract logic.

Wikipedia (opens in a new tab) notes that they can be thought of as a regular legal contract with rules that are automatically executed, and thus the need for external enforcement or mediation is reduced.

Permissionless

Smart contracts can be written and deployed by anyone as long as they have an ICON account, the funds to deploy the contract, and the ability to produce a contract coded in a valid programming language for ICON.

Currently, smart contracts can be written in Java (opens in a new tab). Support may be available for other JVM languages (opens in a new tab) as well, but this is highly untested.

Composability

Smart contracts are available to be called from other contracts by design. They act as open APIs so that one smart contract can make use of the already available and auditable sets of rules and actions reachable from the ICON ecosystem.

Learn more about composability in the corresponding section of the documentation.

Limitations

As mentioned in the sections on the ICON execution environments (e.g. Java), there are certain features of a runtime environment that are used and expected by many programmers that are not available in ICON. This is by design, so that the blockchain can be deterministic and a consensus can be formed about the global state. Some limitations are as follows:

  • No external networking
  • No randomness

Networking and external information can be made accessible through the use of oracles (opens in a new tab) or external relays that aggregate proofs and communicate across blockchains.

Randomness on the blockchain is a work-in-progress. Some implementations are available, such as that from Chainlink (opens in a new tab).

CTRL + M