Quick start
sharkdag.js를 설치하고 실행하기 위한 방법
Install
npm i https://github.com/dubu4-dev/shark-dag-js.git --save<script src="public/js/sharkdag.min.js"></script>코드 테스트 (Unit Test with Jest)
yarn test --verbose사용법
const sharkdag = require('shark-dag-js');
// 기본 공식 허브에 연결 'wss://mainnet.dubu4.com/hub'
const client = new sharkdag.Client();
// 특정 허브에 연결
const client = new sharkdag.Client('wss://testnet.dubu4.com/hub');
// Connect to testnet
const options = { testnet: true };
const client = new sharkdag.Client('wss://testnet.dubu4.com/hub', options);Transaction
Last updated
Was this helpful?