Versions in this module Expand all Collapse all v1 v1.0.0 May 19, 2021 Changes in this version + type Accounting interface + CalculateBalance func(ctx contractapi.TransactionContextInterface, txIds dto.AccountingBalance) error + GetTx func(ctx contractapi.TransactionContextInterface) ([]string, error) + type HealthCheck interface + CreateHealthCheck func(ctx contractapi.TransactionContextInterface) (string, error) + type NFT interface + BalanceOf func(ctx contractapi.TransactionContextInterface, ownerWalletId string) (int, error) + Mint func(ctx contractapi.TransactionContextInterface, gs1Number string, ...) (string, error) + OwnerOf func(ctx contractapi.TransactionContextInterface, nftTokenId string) (string, error) + TransferFrom func(ctx contractapi.TransactionContextInterface, ownerWalletId string, ...) error + type Token interface + Burn func(ctx contractapi.TransactionContextInterface, walletId string, amount float64) error + CreateType func(ctx contractapi.TransactionContextInterface, name string, tickerToken string, ...) (string, error) + Exchange func(ctx contractapi.TransactionContextInterface, ...) error + Issue func(ctx contractapi.TransactionContextInterface, ...) error + Mint func(ctx contractapi.TransactionContextInterface, walletId string, amount float64) error + Swap func(ctx contractapi.TransactionContextInterface, fromWalletId, toWalletId string, ...) error + Transfer func(ctx contractapi.TransactionContextInterface, fromWalletId, toWalletId string, ...) error + type Wallet interface + BalanceOf func(ctx contractapi.TransactionContextInterface, walletId string) (string, error) + Create func(ctx contractapi.TransactionContextInterface, tokenId string, ...) (string, error) + EnrollToken func(ctx contractapi.TransactionContextInterface, tokenId string, ...) error + Update func(ctx contractapi.TransactionContextInterface, walletId string, ...) error