getFlowOperatorData
flow operator permissions data for a particular pair of sender and flow operator.
//load the token you'd like to use like this
//note that tokens may be loaded by symbol or by address
const daix = await sf.loadSuperToken("DAIx");
let res = await daix.getFlowOperatorData({
sender: string,
flowOperator: string,
providerOrSigner: ethers.providers.Provider | ethers.Signer
});
Parameters
Parameter
Type
Description
sender
string
Address of sender account
flowOperator
string
Address of flow operator account
providerOrSigner
ethers.providers.Provider
or ethers.Signer
ethers provider or ethers signer object
Return Value(s)
Returns a JSON object literal with the below info:
Last updated
Was this helpful?