SmartC is a C compiler for writing smart contracts on the Signum blockchain, written in TypeScript/JavaScript. Current stable version is 2.3.0. It enables developers to compile C code into Signum virtual machine bytecode, offering an alternative to lower-level languages for contract development. Key differentiators: full C support, in-browser compilation, both Node.js and browser distributions. Release cadence: stable under @latest, development under @next.
npm install smartc-signum-compilerNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Compiles a simple C smart contract and outputs assembly and machine code. Demonstrates usage of the SmartC class.
Always pass an object with both properties.
Create a new SmartC instance for each compilation.
Use module imports when possible to avoid global conflicts.
const { SmartC } = require('smartc-signum-compiler');Run npm install smartc-signum-compiler
Review your C code for missing semicolons or other syntax issues.
No dependency data recorded yet.