Documentation
    Preparing search index...

    Type Alias CollectFeesParams

    Parameters to collect fees from a position.

    PublicKey for the whirlpool that the position will be opened for.

    PublicKey for the position will be opened for.

    PublicKey for the position token's associated token address.

    PublicKey for the token A account that will be withdrawed from.

    PublicKey for the token B account that will be withdrawed from.

    PublicKey for the tokenA vault for this whirlpool.

    PublicKey for the tokenB vault for this whirlpool.

    authority that owns the token corresponding to this desired position.

    type CollectFeesParams = {
        position: PublicKey;
        positionAuthority: PublicKey;
        positionTokenAccount: PublicKey;
        tokenOwnerAccountA: PublicKey;
        tokenOwnerAccountB: PublicKey;
        tokenVaultA: PublicKey;
        tokenVaultB: PublicKey;
        whirlpool: PublicKey;
    }
    Index

    Properties

    position: PublicKey
    positionAuthority: PublicKey
    positionTokenAccount: PublicKey
    tokenOwnerAccountA: PublicKey
    tokenOwnerAccountB: PublicKey
    tokenVaultA: PublicKey
    tokenVaultB: PublicKey
    whirlpool: PublicKey