diff --git a/indexer/src/types/marketplace.events.ts b/indexer/src/types/marketplace.events.ts index 8febd5a..9a1c166 100644 --- a/indexer/src/types/marketplace.events.ts +++ b/indexer/src/types/marketplace.events.ts @@ -33,6 +33,7 @@ export type Initialized = { feePerUploadedFile: bigint | null; royaltyToMarketplaceForTrade: number | null; royaltyToMarketplaceForMint: number | null; + minimumTransferValue: bigint | null; }; export type NewCollectionAdded = { @@ -177,6 +178,7 @@ export interface NftMarketplaceEventPlain extends Enum { initialized: { timeBetweenCreateCollections: u64; feePerUploadedFile: u128; + minimumTransferValue: u128; royaltyToMarketplaceForTrade: u16; royaltyToMarketplaceForMint: u16; }; @@ -451,6 +453,9 @@ export function getMarketplaceEvent( feePerUploadedFile: safeUnwrapToBigInt( event.initialized.feePerUploadedFile, ), + minimumTransferValue: safeUnwrapToBigInt( + event.initialized.minimumTransferValue, + ), royaltyToMarketplaceForTrade: safeUnwrapToNumber( event.initialized.royaltyToMarketplaceForTrade, ),