Compiling a smart contract in Kotlin
When compiling a Kotlin contract one wants to reduce the resulting binary size to the bare minimum possible to save on deployment fees, since that metric is tied only to the size of the deployed binary. As a good rule of thumb is to always strip all removable metadata (e.g.: DWARF, symbol table and debug info).
The QVM compiler enables presets which help to achieve an extremely small static binary as a result.
Compiling Kotlin smart contract to static binary with the QVM compiler
We already supply a simple compiler container which will perform the most optimized build of turning above sample contract to a static binary which can be run by QVM.
Since you saved the previous sample contract as main.kt
in your current directory, you can run the compiler like this:
Afterwards you will end up with a statically linked linux ELF binary called “contract” in your current directory.
Last updated