Smart Contracts
Smart contracts in Acki Nacki are the core of all logic and state in the network. They are written in Solidity, compiled into bytecode, and executed within the TON Virtual Machine (TVM).
This page introduces the key tools, standards, and guides you’ll need to write, deploy, and maintain smart contracts on Acki Nacki.
TON Virtual Machine (TVM).
ABI Specification and Data Encoding
Acki Nacki uses a strict ABI (Application Binary Interface) format for:
Encoding and decoding input/output
Defining function signatures
Structuring on-chain communication
Compilation Compilation transforms your Solidity code into bytecode executed by the TVM.
Security Best Practices
Last updated