goodday-sdk
Version:
A lib for streaming G$ token to any account
6 lines (5 loc) • 505 B
TypeScript
import { ethers } from "ethers";
export declare function createNewFlow(recipient: string, flowRate: string): Promise<ethers.providers.TransactionResponse | undefined>;
export declare function GetFlow(recipient: string): Promise<import("@superfluid-finance/sdk-core").IWeb3FlowInfo | undefined>;
export declare function deleteExistingFlow(recipient: string): Promise<void>;
export declare function UpdateFlow(recipient: string, flowRate: string): Promise<ethers.providers.TransactionResponse | undefined>;