firma-js-chain-2.0
Version:
The Official FirmaChain Javascript SDK written in Typescript
18 lines (17 loc) • 816 B
TypeScript
import { FirmaConfig } from "./FirmaConfig";
import { FirmaBankService } from "./FirmaBankService";
import { FirmaFeeGrantService } from "./FirmaFeeGrantService";
import { NftService } from "./FirmaNftService";
import { ContractService } from "./FirmaContractService";
import { IpfsService } from "./FirmaIpfsService";
import { FirmaWalletService } from "./FirmaWalletService";
export declare class FirmaSDK {
Config: FirmaConfig;
Wallet: FirmaWalletService;
Bank: FirmaBankService;
FeeGrant: FirmaFeeGrantService;
Nft: NftService;
Contract: ContractService;
Ipfs: IpfsService;
constructor(Config: FirmaConfig, Wallet?: FirmaWalletService, Bank?: FirmaBankService, FeeGrant?: FirmaFeeGrantService, Nft?: NftService, Contract?: ContractService, Ipfs?: IpfsService);
}