Socket
Book a DemoInstallSign in
Socket

@zilliqa-js/scilla-json-utils

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zilliqa-js/scilla-json-utils

Scilla JSON Utils Simplifies the way you construct the Scilla JSON data <img src="

0.2.0
latest
npmnpm
Version published
Maintainers
2
Created
Source

Scilla JSON Utils

Simplifies the way you construct the Scilla JSON data

Installation

npm i @zilliqa-js/scilla-json-utils
# or
yarn add @zilliqa-js/scilla-json-utils

Usage

I. scillaJSONVal(type: string, value: any)

Integers (UintX / IntX)

import { scillaJSONVal } from "@zilliqa-js/scilla-json-utils";

scillaJSONVal("Uint256", "1");
// Output: "1"
scillaJSONVal("Int256", "-1");
// Output: "-1"
scillaJSONVal("Uint256", 1);
// Output: "1"
scillaJSONVal("Int256", -1);
// Output: "-1"

Strings (String)

scillaJSONVal("String", "Foo");
// Output: "Foo"

Byte Strings (ByStrX)

scillaJSONVal("ByStr20", "0x85E0bef5F9a11821f9B2BA778a05963436B5e720");
// Output: "0x85e0bef5f9a11821f9b2ba778a05963436b5e720"
// Note that the output is lowercased.

Block Numbers (BNum)

scillaJSONVal("BNum", "1");
// Output: "1"
scillaJSONVal("BNum", 1);
// Output: "1"

Boolean (Bool)

scillaJSONVal("Bool", false);

Output:

{
  "argtypes": [],
  "arguments": [],
  "constructor": "False"
}

Option (Option)

None
scillaJSONVal("Option (ByStr20)", undefined);

Output:

{
  "argtypes": ["ByStr20"],
  "arguments": [],
  "constructor": "None"
}
Some
scillaJSONVal("Option (ByStr20)", "0x0000000000000000000000000000000000000000");

Output:

{
  "argtypes": ["ByStr20"],
  "arguments": ["0x0000000000000000000000000000000000000000"],
  "constructor": "Some"
}

Pair (Pair)

scillaJSONVal("Pair (ByStr20) (Uint256)", [
  "0x0000000000000000000000000000000000000000",
  1,
]);

Output:

{
  "argtypes": ["ByStr20", "Uint256"],
  "arguments": ["0x0000000000000000000000000000000000000000", "1"],
  "constructor": "Pair"
}

List (List)

scillaJSONVal("List (Pair (ByStr20) (Uint256))", [
  ["0x85E0bef5F9a11821f9B2BA778a05963436B5e720", 1],
  ["0x85E0bef5F9a11821f9B2BA778a05963436B5e720", 2],
]);

Output:

[
  {
    "argtypes": ["ByStr20", "Uint256"],
    "arguments": ["0x85e0bef5f9a11821f9b2ba778a05963436b5e720", "1"],
    "constructor": "Pair"
  },
  {
    "argtypes": ["ByStr20", "Uint256"],
    "arguments": ["0x85e0bef5f9a11821f9b2ba778a05963436b5e720", "2"],
    "constructor": "Pair"
  }
]

User-defined ADTs

type Foo =
| Bar of ByStr20 BNum
| Baz of ByStr20
scillaJSONVal(
  "0x85E0bef5F9a11821f9B2BA778a05963436B5e720.Foo.Bar.of.ByStr20.BNum",
  ["0x0000000000000000000000000000000000000000", 1]
);

Output:

{
  "argtypes": [],
  "arguments": ["0x0000000000000000000000000000000000000000", "1"],
  "constructor": "0x85e0bef5f9a11821f9b2ba778a05963436b5e720.Bar"
}

II. scillaJSONParams({[vname: string]: [type: string, value: any]})

type Foo =
| Bar of ByStr20 BNum
| Baz of ByStr20
import { scillaJSONParams } from "@zilliqa-js/scilla-json-utils";

scillaJSONParams({
  x: [
    "0x85E0bef5F9a11821f9B2BA778a05963436B5e720.Foo.Bar.of.ByStr20.BNum",
    ["0x0000000000000000000000000000000000000000", 1],
  ],
  y: [
    "List (Pair (ByStr20) (String))",
    [
      ["0x85E0bef5F9a11821f9B2BA778a05963436B5e720", "Foo"],
      ["0x85E0bef5F9a11821f9B2BA778a05963436B5e720", "Bar"],
    ],
  ],
  z: ["Uint256", 1],
});

Output:

[
  {
    "type": "0x85e0bef5f9a11821f9b2ba778a05963436b5e720.Foo",
    "value": {
      "argtypes": [],
      "arguments": ["0x0000000000000000000000000000000000000000", "1"],
      "constructor": "0x85e0bef5f9a11821f9b2ba778a05963436b5e720.Bar"
    },
    "vname": "x"
  },
  {
    "type": "List (Pair (ByStr20) (String))",
    "value": [
      {
        "argtypes": ["ByStr20", "String"],
        "arguments": ["0x85e0bef5f9a11821f9b2ba778a05963436b5e720", "Foo"],
        "constructor": "Pair"
      },
      {
        "argtypes": ["ByStr20", "String"],
        "arguments": ["0x85e0bef5f9a11821f9b2ba778a05963436b5e720", "Bar"],
        "constructor": "Pair"
      }
    ],
    "vname": "y"
  },
  {
    "type": "Uint256",
    "value": "1",
    "vname": "z"
  }
]

More cases

License

This project is open source software licensed as GPL-3.0.

FAQs

Package last updated on 20 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.