@frakt-protocol/frakt-sdk
Version:
Frakt SDK for interacting with frakt.xyz protocols
23 lines (22 loc) • 733 B
TypeScript
/// <reference types="bn.js" />
import { BN, web3 } from '@project-serum/anchor';
declare type UpdateCollectionInfo = (params: {
programId: web3.PublicKey;
connection: web3.Connection;
liquidityPool: web3.PublicKey;
admin: web3.PublicKey;
creatorAddress: web3.PublicKey;
collectionInfo: web3.PublicKey;
pricingLookupAddress: web3.PublicKey;
loanToValue: number | BN;
collaterizationRate: number | BN;
royaltyAddress: web3.PublicKey;
royaltyFeeTime: number | BN;
royaltyFeePrice: number | BN;
expirationTime: number | BN;
isPriceBased: boolean;
}) => Promise<{
ix: web3.TransactionInstruction;
}>;
export declare const updateCollectionInfo: UpdateCollectionInfo;
export {};