Skip to content

Commit

Permalink
tensor-transactions-spec adjusted mandatory fields (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
Baulore authored Apr 24, 2024
1 parent f24de06 commit e84802f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export interface NftBuyTransactionParams extends SmartMessageParams {
price: string;
owner: string;
priceWithFeeAndRoyalty: string;
imageUrl?: string;
collectionName?: string;
nftName?: string;
imageUrl: string;
collectionName: string;
nftName: string;
}

export interface TensorNftBuyFloorSmartMessage extends SmartMessage {
Expand All @@ -24,5 +24,5 @@ export interface TensorNftBuyFloorSmartMessage extends SmartMessage {
export interface NftBuyFloorTransactionParams extends SmartMessageParams {
collectionId: string;
collectionName: string;
imageUrl?: string;
imageUrl: string;
}

0 comments on commit e84802f

Please sign in to comment.