@completium/archetype
Version:
Archetype is a general purpose language to develop Smart Contracts on the Tezos blockchain.
19 lines (13 loc) • 425 B
Markdown
Archetype is a domain-specific language (DSL) to develop smart contracts
on the Tezos blockchain, with a specific focus on contract security.
See https://archetype-lang.org for more details.
## Usage
```js
const archetype = require('@completium/archetype');
const fs = require('fs');
const output = archetype.compile('./resources/simple.arl', {
target: 'michelson'
});
console.log(output);
```