npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gfusee/mx-sdk-as

v0.2.5

Published

AssemblyScript smart contract library designed for MultiversX's VM.

Downloads

2

Readme

MultiversX WASM AssemblyScript (Proof of concept)

A proof of concept to make MultiversX smart contracts in AssemblyScript.

⚠️ Warning ⚠️

THIS IS ONLY EXPERIMENTAL, DO NOT USE IT IN PRODUCTION !

The aim of this repo is to make a proof of concept and ONLY a proof of concept. The code is neither clean nor safe nor optimized !

Getting started

Tutorials

Two smart contracts tutorials are available here : https://fusee.gitbook.io/mx-sdk-as/.

They will give a good idea about what you can build with this framework.

AssemblyScript

AssemblyScript is nearly the same as Typescript, but there is still some differences, please check https://www.assemblyscript.org/ to have more informations.

Contract development

Build the empty contract

If you only want to try writing smart contracts with this framework do the following steps :

  • Clone the following repo : https://github.com/gfusee/mx-sdk-as-empty
  • In order to compile the contract you should run the command npm run build

And you're done ! The contract is compiled into the build folder.

Feel free to check examples contracts inside the contracts/examples folder, these are reproduction of mx-sdk-rs examples contracts.

Test the contract via scenario

If you have a standard installation of mxpy, the run-scenarios executable should be located in the ~/multiversx-sdk/vmtools folder. Here are the steps to execute scenarios :

  • Compile the contract (steps above)
  • Find your run-scenario executable path inside your custom installation of mxpy installation
  • Inside the root folder of the project, run the <path to run> scenarios command

Documentation

There is currently no documentation, feel free to check examples inside the contract/examples folder.

If after that you have any question, feel free to DM me !

What's not (properly) working

Structs/classes & enums

Structs and enums are workings but with some limitations.

In order to create a classes which is compatible with the framework you should annotate it with either @struct or @enumType :

@struct
export class Human {
    name: ManagedBuffer
    age: ManagedU64
    wallet: ManagedAddress
}

or

@enumType
export enum Animal {
    Cat,
    Dog,
    Spider
}

You should be aware of the four following limitations :

  • Constructor should have no parameter. It is planned in the future to allow constructors with params, for now, you can use statics methods as a workaround.
  • They should have only managed properties types (those exported from this framework)
  • Enums are converted into classes at compilation. So switch statements may not work as expected, please use if instead.
  • They are allocated on the heap. More explanations below.

Async calls

MultiversX team will soon change the asynchronous contracts calls system, hence I will not implement the current system. This leads to several limitations like no call to ESDT proxy (issuing tokens, managing roles)

This feature will be my ultimate priority when MultiversX team will implement the new async calls system.

Statics and generics

There is a limitation related to Typescript, we cannot define static methods on interfaces so we cannot call them on generic parameters.

A good workaround is to instantiate dummy objects to have access to those methods. This may lead to useless VM calls, I'm hunting these useless calls to remove them.

Closures

AssemblyScript has a SEVERE limitation about closures. Inside a closure we cannot use a variable declared outside, for example this code works :

myBiguints.forEach(biguint => {
    if (biguint == BigUint.zero()) {
        throw new Error("BigUint should be greater than 0 !")
    }
})

But the following code does not work :

const sum = BigUint.zero()
myBiguints.forEach(biguint => {
    sum += biguint //does NOT compile because sum is declared outside the closure
})

This issue is known by the AssemblyScript and should be fixed in the future : https://github.com/AssemblyScript/assemblyscript/issues/798

Heap allocations

The biggest limitation of AssemblyScript I'm facing is that classes does not act as C structs, they are always allocated on the heap and this lead to big issues. I used a heavy workaround for some classes (ManagedBuffer, BigUint, ...) but not for all classes because this take a lot of time to refactor all.

This issue is known by the AssemblyScript team : https://github.com/AssemblyScript/assemblyscript/issues/2254