Skip to content

intfoundation/int4.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

int4.js - INT Chain 4.0 JavaScript API

NPM Package Version NPM Package Downloads Coverage Status License GitHub top language Size Nodejs Package Last Commit

Installation

Node

npm i int4.js

Yarn

yarn add int4.js

Usage

int4

const int4 = require('int4.js');
console.log(int4);

{   
    account:{},
    nat:{},
    bytes:{},
    hash:{},
    rlp:{},
    abi:{},
    transaction:{},
    rpc:{},
    desubits:{},
    passphrase:{},
    keystore:{},
    utils:{}
}

const

const Account = int4.account;
const RPC = int4.rpc;
const Nat = int4.nat;
const Transaction = int4.transaction;
const Utils = int4.utils;
const Abi = int4.abi;
const Keystore = int4.keystore;

const testAccount = {
    address: '0x8dBC29f4d2b9C822903d437d12f7db048dF69a60',
    privateKey: '0x353d3eab4643ab04972eaa80e4b3383266fea8cfd743605c62dd0fb07768ba7a'
};
const testValidator = {
    address:     "0x8dBC29f4d2b9C822903d437d12f7db048dF69a60",
    consPrivKey: "0x56F2EBBF7EAA3FB044A9D7EA070D2A205E6AF091E1EDA0C95B0AB2BE39D9B4E9",
    consPubKey:  "0x0684EF4E9B6F47A0EB5430B427CB00687FBD301B695101EDB0DCC69CDDB3635239DF0B4D471F6B7F43077EA614492EC2438707FE26A8D9E64D463ACDFE806D0375B4DE3D43BC57FF2F31FA14D9A4B81E40A572E2ACD9742ED43C09A328487229678195B7F90D14A6D8493E750347C339508C8480F712369D919F747014E15C21",
};

const InterContractAddr = "0x0000000000000000000000000000000000001001";

const RegisterABI = {
        "type": "function",
        "name": "Register",
        "constant": false,
        "inputs": [
            {
                "name": "pubkey",
                "type": "bytes"
            },
            {
                "name": "signature",
                "type": "bytes"
            },
            {
                "name": "commission",
                "type": "uint8"
            }
        ]
};

Create Account

let account = Account.create();
console.log(account)
{ 
 address: '0x8dBC29f4d2b9C822903d437d12f7db048dF69a60',
 privateKey: '0x353d3eab4643ab04972eaa80e4b3383266fea8cfd743605c62dd0fb07768ba7a' 
}

Create Keystore

let v3Keystore = Keystore.toV3Keystore(keystore.privateKey, keystore.password, {});
console.log(v3Keystore);

{ version: 3,
  id: 'b596552f-ccd6-442c-9411-097f392a8796',
  address: '0x6bE686f9C4f5a3921ad989397195ECbc335D933e',
  crypto:
   { ciphertext:
      '9787b80d9eb516b6281dc3d5d108d24aadc21a85db8f4ea8fa7df1fd92d83122',
     cipherparams: { iv: '4ae4cd88acbe22769421744b220c3909' },
     cipher: 'aes-128-ctr',
     kdf: 'scrypt',
     kdfparams:
      { dklen: 32,
        salt:
         'a5e79e8ed19a6bc742c56e0aded85f81e924f46a33c4c03dd848d6ceed2a9091',
        n: 8192,
        r: 8,
        p: 1 },
     mac:
      '09d9bd8bbb990892c38b006e71faa27a3d6f3a3c02371555f0b9b39c78b091a2' } }

Recover Account from PrivateKey or Keystore

const keystore = {
    password: '123456789',
    address: '0x6bE686f9C4f5a3921ad989397195ECbc335D933e',
    privateKey: '0xea03153d519677c7a355d95d3308ecc6b863d686f0d80192e5ee74984f5bc5ac',
    json: {"version":3,"id":"fc64a970-117a-4507-925b-4107b761d361","address":"0x6bE686f9C4f5a3921ad989397195ECbc335D933e","crypto":{"ciphertext":"f6bde26131cf6c26a87c3bfdfeae8426b564e7263a1238e2bdce9da36c7fdc20","cipherparams":{"iv":"75df1a41193930a895721c0f077b2be7"},"cipher":"aes-128-ctr","kdf":"scrypt","kdfparams":{"dklen":32,"salt":"dd8233d31da738ee24a4c9926bfe8f67971dc8780fda8809c02713533414ed15","n":8192,"r":8,"p":1},"mac":"735c0d711f712dbcaea783bf94b108a5ef681657a340f7f662fa6925e2defcb6"}}
};

let fromPrivAccount = Account.fromPrivate(keystore.privateKey); 
let fromKeystoreAccount = Keystore.fromV3Keystore(keystore.json, keystore.password);   
console.log(fromPrivAccount/fromKeystoreAccount);

{ address: '0x6bE686f9C4f5a3921ad989397195ECbc335D933e',
  privateKey: '0xea03153d519677c7a355d95d3308ecc6b863d686f0d80192e5ee74984f5bc5ac' 
}

SendRawTransaction

  • The javascript code should be inside the async function.
let url = "http://127.0.0.1:8555";
let send = RPC(url);
let nonce = await send("int_getTransactionCount", [testAccount.address, "latest"]);
let tx = {
    chainId: Nat.fromString("2048"),  //  2048 for testnet
    nonce: Nat.fromString(nonce),
    gasPrice: Nat.fromString("5000000000000"),
    gas: Nat.fromString("30000"),
    to: testAccount.address,
    value: Nat.fromString(Utils.fromINT('0')),
    data: "0x"
};

let signature = Transaction.sign(tx, testAccount);
let hash = await send("int_sendRawTransaction", [signature]);
console.log(hash);

Register Transaction

  • The javascript code should be inside the async function.
let url = "http://127.0.0.1:8555";
let send = RPC(url);
let nonce = await send("int_getTransactionCount", [testAccount.address, "latest"]);
let addressSign = await send("int_signAddress", [testAccount.address,testValidator.consPrivKey]);


let inputs = RegisterABI.inputs;
let types = [];
for (let input of inputs) {
    types.push(input.type)
}

let methodId = Abi.methodID(RegisterABI.name, types);  // 0xf1b2ef10

let encodeData = Abi.encodeParams(types, [testValidator.consPubKey, addressSign, 10]);
let data = "0x" + methodId.slice(2) + encodeData.slice(2);

let tx = {
    chainId: Nat.fromString("2048"),
    nonce: Nat.fromString(nonce),
    gasPrice: Nat.fromString("5000000000000"),
    gas: Nat.fromString("50000"),
    to: InterContractAddr,
    value: Nat.fromString(Utils.fromINT('10000')),
    data: data
};

let signature = Transaction.sign(tx, testAccount);
let hash = await send("int_sendRawTransaction", [signature]);
console.log(hash)

Building

Requirements

Building (babel)

Build the int4.js package:

npm run build

Testing (mocha)

npm run test

License

MIT License

Copyright (c) 2021 INT Chain

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.