@makerdao/dai
Version:
Library for interacting with the Dai Stablecoin System.
18 lines (17 loc) • 405 B
TypeScript
export function privateKeyAccountFactory({ key }: {
key: any;
}): {
subprovider: any;
address: any;
};
export function providerAccountFactory({ offset, address }: {
offset: any;
address: any;
}, provider: any): Promise<{
subprovider: any;
address: any;
}>;
export function browserProviderAccountFactory(): Promise<{
subprovider: any;
address: any;
}>;