@unspent/phi
Version:
a collection of anyone can spend contracts
29 lines • 835 B
TypeScript
import { Annuity } from "./annuity/index.js";
import { Divide } from "./divide/index.js";
import { Drip } from "./drip/index.js";
import { Faucet } from "./faucet/index.js";
import { Mine } from "./mine/index.js";
import { Perpetuity } from "./perpetuity/index.js";
import { Record } from "./record/index.js";
export declare const contractMap: {
A: typeof Annuity;
D: typeof Divide;
F: typeof Faucet;
$: typeof Drip;
M: typeof Mine;
P: typeof Perpetuity;
R: typeof Record;
};
export declare type CodeType = keyof typeof contractMap;
export declare type ContractType = typeof contractMap[keyof typeof contractMap];
export declare const nameMap: {
A: string;
D: string;
$: string;
F: string;
L: string;
M: string;
P: string;
R: string;
};
//# sourceMappingURL=constant.d.ts.map