Interface IndexSubscriptionClaimMutation

Claims any pending tokens allocated to the Subscription (unapproved).

interface IndexSubscriptionClaimMutation {
    chainId: number;
    indexId: string;
    overrides?: Overrides & {
        from?: string;
    };
    publisherAddress: string;
    signer: Signer;
    subscriberAddress: string;
    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.

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

Type declaration

  • Optional from?: string
publisherAddress: string
signer: Signer
subscriberAddress: string
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

Generated using TypeDoc