@0xcert/ethereum-erc20-contracts
Version:
Smart contract implementation of the ERC-20 standard on the Ethereum blockchain.
17 lines (16 loc) • 349 B
TypeScript
import { Spec } from '@specron/spec';
interface Data {
dappToken?: any;
migrationToken?: any;
token?: any;
owner?: string;
bob?: string;
jane?: string;
sara?: string;
zeroAddress?: string;
ttProxy?: string;
decimalsMul?: any;
totalTokenSupply?: any;
}
declare const spec: Spec<Data>;
export default spec;