getSignatureForOfferApproval
getSignatureForOfferApproval: { 
    Network?: { 
        chainID: number; 
        defaultCurrency: string; 
        id: string; 
        isTestnet: boolean; 
        name: string; 
        paymentCurrency: string; 
        rpcURL: string; 
        wethAddress: string; 
    }; 
    order: { 
        buyerAddress: string; 
        buyerTax: number; 
        fixedPrice: number; 
        id: string; 
        nftOwnerAddress: string; 
        nftTokenId: string; 
        orderStatus: OrderStatus; 
        orderType: NFTOrderType; 
        paymentToken: string; 
        price: NFTPrice[]; 
        quantity: number; 
        tokenId: string; 
        tokenType: TokenType; 
    }; 
    proofOfApproval: string; 
}
Type declaration
- 
OptionalNetwork?: {
 chainID: number;
 defaultCurrency: string;
 id: string;
 isTestnet: boolean;
 name: string;
 paymentCurrency: string;
 rpcURL: string;
 wethAddress: string;
 }
- 
chainID: number
- 
defaultCurrency: string
- 
id: string
- 
isTestnet: boolean
- 
name: string
- 
paymentCurrency: string
- 
rpcURL: string
- 
wethAddress: string
 
- 
order: { 
 buyerAddress: string;
 buyerTax: number;
 fixedPrice: number;
 id: string;
 nftOwnerAddress: string;
 nftTokenId: string;
 orderStatus: OrderStatus;
 orderType: NFTOrderType;
 paymentToken: string;
 price: NFTPrice[];
 quantity: number;
 tokenId: string;
 tokenType: TokenType;
 }
- 
buyerAddress: string
- 
buyerTax: number
- 
fixedPrice: number
- 
id: string
- 
nftOwnerAddress: string
- 
nftTokenId: string
- 
orderStatus: OrderStatus
- 
orderType: NFTOrderType
- 
paymentToken: string
- 
price: NFTPrice[]
- 
quantity: number
- 
tokenId: string
- 
tokenType: TokenType
 
- 
proofOfApproval: string