Building blocks for Tezos contracts
Install via npm or yarn
npm install tzklar
yarn add tzklar
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/
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
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.