View Source API Reference numscriptex v0.2.2

Modules

NumscriptEx is a library that allows its users to check and run Numscripts via Elixir.

Numscriptex.AssetsManager is responsible for ensuring that the Numscriptex library have all it needs (i.e. a WASM binary file that is used to check and run Numscripts) to run correctly at compile time.

Numscriptex.Balances is responsible for building the account's final balance after running your Numscript, so you can see the results of all transactions.

After you check your numscript you might get a variety of logs even if it is valid, Numscriptex.CheckLog is responsible for standardize these logs.

A Numscript needs some other data aside from the script itself to run correctly, and Numscriptex.Run solves this problem. If you want to know what exactly these additional fields are, you can learn more on Numscript Playground and the Numscript Docs.

Numscriptex.Utilities module contain reusable code that are common in more than one module of this library.