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

@magic-ext/zilliqa

v23.18.0

Published

magic zilliqa extension

Downloads

3,218

Readme

Magic Extension Zilliqa blockchain

Installation

npm i magic-sdk @magic-ext/zilliqa

Setup

Setup TezosExtension with magic-sdk


import { Magic } from 'magic-sdk';
import { ZilliqaExtension } from '@magic-ext/zilliqa';
const { BN, Long, bytes, units } = require('@zilliqa-js/util');

const magic = new Magic('YOUR_API_KEY', {
    extensions: [
        new ZilliqaExtension({
            rpcUrl: 'zilliqa rpc url'
        })
    ]
});

// or


const magic = new Magic('YOUR_API_KEY', {
    extensions: {
        zilliqa: new ZilliqaExtension({
            rpcUrl: 'zilliqa rpc url'
        })
    }
});

Magic SDK

See the developer documentation to learn how you can master the Magic SDK in a matter of minutes.

Usage

Get wallet

Using wallet function to get Zilliqa public key, and address for current user.

const wallet = await magic.zilliqa.getWallet();
console.log('zilliqa wallet', wallet);

Send Transaction

      const handlerSendTransaction = async () => {

          const chainId = 333; // chainId of the developer testnet
          const msgVersion = 1; // current msgVersion
          const VERSION = bytes.pack(chainId, msgVersion);

          const myGasPrice = units.toQa('1000', units.Units.Li);

          const params = {
              version: VERSION,
              toAddr: "zil14vut0rh7q78ydc0g7yt7e5zkfyrmmps00lk6r7",
              amount: (new BN(units.toQa('0.5', units.Units.Zil))), // Sending an amount in Zil (1) and converting the amount to Qa
              gasPrice: myGasPrice, // Minimum gasPrice veries. Check the `GetMinimumGasPrice` on the blockchain
              gasLimit: Long.fromNumber(1),
          };

          const tx = await magic.zil.sendTransaction(
              params,
              false,
          );

          console.log('send transaction', tx)
      };

Deploy Contract

const handleDeployContract = async () => {
          const wallet = await magic.zil.getWallet();

          const address = wallet.address;

          const code = `scilla_version 0

    (* HelloWorld contract *)

    import ListUtils

    (***************************************************)
    (*               Associated library                *)
    (***************************************************)
    library HelloWorld

    let not_owner_code = Int32 1
    let set_hello_code = Int32 2

    (***************************************************)
    (*             The contract definition             *)
    (***************************************************)

    contract HelloWorld
    (owner: ByStr20)

    field welcome_msg : String = ""

    transition setHello (msg : String)
      is_owner = builtin eq owner _sender;
      match is_owner with
      | False =>
        e = {_eventname : "setHello()"; code : not_owner_code};
        event e
      | True =>
        welcome_msg := msg;
        e = {_eventname : "setHello()"; code : set_hello_code};
        event e
      end
    end


    transition getHello ()
        r <- welcome_msg;
        e = {_eventname: "getHello()"; msg: r};
        event e
    end`;

          const init = [
              // this parameter is mandatory for all init arrays
              {
                  vname: '_scilla_version',
                  type: 'Uint32',
                  value: '0',
              },
              {
                  vname: 'owner',
                  type: 'ByStr20',
                  value: `${address}`,
              },
          ];

          const chainId = 333; // chainId of the developer testnet
          const msgVersion = 1; // current msgVersion
          const VERSION = bytes.pack(chainId, msgVersion);

          const myGasPrice = units.toQa('1000', units.Units.Li);

          const params = {
              version: VERSION,
              gasPrice: myGasPrice,
              gasLimit: Long.fromNumber(10000),
          }

          const result = await magic.zil.deployContract(
              init, code, params, 33, 1000, false
          )


          console.log('deploy contract', result);


      };

Call Contract

      const handleCallContract = async () => {

          const newMsg = 'Hello, test call contract' ;

          const chainId = 333; // chainId of the developer testnet
          const msgVersion = 1; // current msgVersion
          const VERSION = bytes.pack(chainId, msgVersion);

          const myGasPrice = units.toQa('1000', units.Units.Li);

          const params = {
              // amount, gasPrice and gasLimit must be explicitly provided
              version: VERSION,
              amount: new BN(0),
              gasPrice: myGasPrice,
              gasLimit: Long.fromNumber(8000),
          }

          const args = [
              {
                  vname: 'msg',
                  type: 'String',
                  value: newMsg,
              },
          ];

          const contractAddress = '0x92867f6C65933bADB3F3e02A36Cf3ad85fE5155b';

            const result = await magic.zil.callContract(
                'setHello', args, params, 33, 1000, false, contractAddress
            );

          console.log('call contract', result)

      };