Update a flow of the token of this class.

interface FlowUpdateMutation {
    chainId: number;
    flowRateWei: string;
    overrides?: Overrides & {
        from?: string;
    };
    receiverAddress: string;
    senderAddress?: string;
    signer: Signer;
    superTokenAddress: string;
    transactionExtraData?: Record<string, unknown>;
    userDataBytes: undefined | string;
}

Hierarchy (view full)

Properties

chainId: number

The network's chain ID where transactions will be broadcast.

flowRateWei: string

The specified flow rate.

overrides?: Overrides & {
    from?: string;
}

Type declaration

  • Optional from?: string
receiverAddress: string

The receiver of the flow.

senderAddress?: string

The sender of the flow. If not specified then signer address is used.

signer: Signer
superTokenAddress: string

SuperToken the mutation will affect.

transactionExtraData?: Record<string, unknown>

Custom data to included in transaction tracking. Has to be serializable for redux!

userDataBytes: undefined | string

Extra user data provided.

Generated using TypeDoc