@arcblock/asset-factory

1.2.8 • Public • Published

asset-factory

styled with prettier docs Gitter

Utility to create standard assets that can be rendered in ABT Wallet

Table of Contents

Install

npm install @arcblock/asset-factory
// or
yarn add @arcblock/asset-factory

Usage

const ForgeSDK = require('@arcblock/forge-sdk');
const { AssetFactory, AssetIssuer } = require('@arcblock/asset-factory');

const wallet = ForgeSDK.Wallet.fromRandom();
const factory = new AssetFactory({
  chainId: 'zinc-2019-05-17',
  chainHost: 'https://zinc.abtnetwork.io/api',
  wallet,
  issuer: {
    name: 'test case',
    url: 'https://www.arcblock.io',
    logo: 'https://www.arcblock.io/favicon.ico',
  },
});

const [asset, hash] = await factory.createTicket({
  backgroundUrl: 'https://www.arcblock.io',
  data: {
    name: '复仇者联盟4的电影票',
    description: '单场次单人座',
    location: '北京市朝阳区青年路朝阳大悦城万达影院',
    startTime: Date.now(),
    endTime: Date.now() + 24 * 60 * 60 * 1000,
    host: new AssetIssuer({
      wallet,
      name: '万达影城',
      logo: 'https://www.baidu.com',
      url: 'https://www.baidu.com',
    }),
  },
});

Documentation

For full documentation, checkout https://forge-js.netlify.com

Package Sidebar

Install

npm i @arcblock/asset-factory

Weekly Downloads

0

Version

1.2.8

License

Apache-2.0

Unpacked Size

23.7 kB

Total Files

9

Last publish

Collaborators

  • gxw
  • mave99a
  • polunzh
  • wangshijun