tzklar
v2.0.0
Published
Building blocks for Tezos contracts
Downloads
6
Readme
tzKlar
Building blocks for Tezos contracts
How to install
Install via npm or yarn
npm install tzklar
yarn add tzklar
How to use
If you need TypeScript types for defining TZIP12, TZIP16 and TZIP21 compliant JSON metadata files:
import { ContractMetadata, TokenMetadata } from "tzklar";
const myContractMetadata: ContractMetadata = {
/* ... */
};
const myTokenMetadata: TokenMetadata = {
/* ... */
};
Also you can check out our documentation page: https://klarluft.github.io/tzklar/
Development
To setup development environment:
yarn
If you update TZIP schema.json files and you want to regenerate TypeScript types files, run:
yarn process-json-schema
About
This repository is part of the tzKlar project intended to help others build apps on Tezos.
The project is maintained by Michal Wrzosek from Klarluft company.