Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
A minimal Ink! contract defining a counter with increment and reset functions.
#[ink::contract]
mod counter {
#[ink(storage)]
pub struct Counter {
value: u64,
}
impl Counter {
#[ink(constructor)]
pub fn new() -> Self {
Self { value: 0 }
}
#[ink(message)]
pub fn increment(&mut self) {
self.value += 1;
}
#[ink(message)]
pub fn reset(&mut self) {
self.value = 0;
}
}
}Ink! is a Rust-based eDSL (embedded domain-specific language) for writing smart contracts on the Substrate blockchain framework. It emphasizes safety, efficiency, and tight integration with Polkadot and Substrate ecosystems.
Origin & Creator
Ink! was created by Parity Technologies, the team behind Substrate and Polkadot, to provide a safe Rust-based smart contract language for WebAssembly chains. Initial development started around 2018.
Industrial Note
Ink! is primarily used in Substrate-based chains and Polkadot parachains, for high-assurance contracts in DeFi, on-chain governance, NFT minting, and other blockchain-native applications.