Skip to content

Commit

Permalink
sdk-actions: upd cheapest to floor + fix params reference
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmbl committed Apr 23, 2024
1 parent 5c7e2e3 commit bdd0550
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/sdk-actions-spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# CHANGELOG

## [UNRELEASED]

## [1.0.0] - 2024-04-23

- feat: initial release with several actions
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ export interface NftBuyTransactionParams extends SmartMessageParams {
nftName?: string;
}

export interface TensorNftBuyCheapestSmartMessage extends SmartMessage {
transactionServiceId: 'tensor-nft-buy-cheapest';
transactionParams: NftBuyTransactionParams;
export interface TensorNftBuyFloorSmartMessage extends SmartMessage {
transactionServiceId: 'tensor-nft-buy-floor';
transactionParams: NftBuyFloorTransactionParams;
}

export interface NftBuyCheapestTransactionParams extends SmartMessageParams {
export interface NftBuyFloorTransactionParams extends SmartMessageParams {
collectionId: string;
collectionName: string;
imageUrl?: string;
Expand Down

0 comments on commit bdd0550

Please sign in to comment.