increaseFlowRateAllowanceWithPermissions

increaseFlowRateAllowanceWithPermissions

Revokes all ACL permissions that an account has over the caller's account for streams of a certain Super Token.

//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 flowOp = daix.increaseFlowRateAllowanceWithPermissions({
    flowOperator: string;
    flowRateAllowanceDelta: string
    permissionsDelta: number
});

await flowOp.exec( <<ethers signer>> );

Parameters

ParameterTypeDescription

flowOperator

string

Address of the account whose ACL permissions the caller is revoking

flowRateAllowanceDelta

string

Wei/sec increase in flow rate allowance

permissionsDelta

number

New permissions you are providing the flowOperator. Explained here.

Example Usage

Last updated