Ola language
  • Introduction
  • 🏃‍♂️Quick Start
  • 👀Ola Examples
  • 👏Ola Language
    • Variables
    • Data Types
    • Operators
    • Control Flow
    • Functions
    • Event
    • Contracts
    • Interfaces and Librariese
    • Import
    • Comment Lines
    • Features TODO
  • Standard Libraries
    • CoreLib Functions
    • Prophet Functions
  • Ola Language ABI
  • Ola Compiler
    • Compiler Frontend
    • Compiler Backend
  • Ola Language Grammar
  • Appendix
Powered by GitBook
On this page
  • Constructor
  • Transaction revert
  • Inheritance and polymorphism
  • Contract constants
Edit on GitHub
  1. Ola Language

Features TODO

Constructor

Currently, Ola smart contracts do not support constructors. Initialization can only be done manually within the contract by writing methods like init. Constructors and state variable initialization will be supported in the future.

Transaction revert

Currently, when an error occurs during transaction execution in Ola smart contracts, specific revert information is not provided. This will be supported in the future.

Inheritance and polymorphism

Currently, Ola smart contracts support interfaces and libraries but lack contract inheritance. This will be supported in the future.

Contract constants

Currently, Ola does not support constants because it requires a dedicated constant storage area to be set up on the backend. This will be supported in the future.

PreviousComment LinesNextStandard Libraries

Last updated 1 year ago

👏