@yoroi/claim
Version:
The Claim (proof-of-onboarding) package of Yoroi SDK
22 lines (20 loc) • 533 B
Flow
/**
* Flowtype definitions for manager
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.21.0
*/
import { FetchData } from "@yoroi/common";
import { Claim, Portfolio } from "@yoroi/types";
declare type ClaimManagerMakerOptions = $ReadOnly<{
address: string,
primaryTokenInfo: Portfolio.Token.Info,
tokenManager: Portfolio.Manager.Token,
...
}>;
declare export var claimManagerMaker: (
x: ClaimManagerMakerOptions,
deps?: $ReadOnly<{
request: FetchData,
...
}>
) => $ReadOnly<Claim.Manager>;