create-tezos-smart-contract
Version:
Node.js toolset to write, test and deploy Tezos smart contracts
18 lines (17 loc) • 380 B
TypeScript
export declare enum TezosProtocols {
CARTHAGE = "carthage",
DELPHI = "delphi",
EDO = "edo",
FLORENCE = "florence",
GRANADA = "granada",
HANGZHOU = "hangzhou",
ITHACA = "ithaca"
}
export declare type FaucetAccount = {
mnemonic: string[];
activation_code: string;
amount: string;
pkh: string;
password?: string;
email: string;
};