Skip to content

Commit

Permalink
fix: packages versions
Browse files Browse the repository at this point in the history
  • Loading branch information
javeoff committed Aug 11, 2024
1 parent 87f45b2 commit 5c090f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/types/BuyParams.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ISendSolanaTransactionParams } from "@cryptoscan/solana-send-transaction";
import { SendSolanaTransactionParameters } from "@cryptoscan/solana-send-transaction";
import { Keypair } from "@solana/web3.js";

export interface BuyParams extends ISendSolanaTransactionParams {
export interface BuyParams extends SendSolanaTransactionParameters {
wallet: Keypair;
payerWallet?: Keypair;
coinAddress: string;
Expand Down
4 changes: 2 additions & 2 deletions lib/types/SellParams.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ISendSolanaTransactionParams } from "@cryptoscan/solana-send-transaction";
import { SendSolanaTransactionParameters } from "@cryptoscan/solana-send-transaction";
import { Keypair } from "@solana/web3.js";

export interface SellParams extends ISendSolanaTransactionParams {
export interface SellParams extends SendSolanaTransactionParameters {
wallet: Keypair;
payerWallet?: Keypair;
coinAddress: string;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"vitest": "^1.6.0"
},
"dependencies": {
"@cryptoscan/scanner-sdk": "^1.1.1",
"@cryptoscan/solana-send-transaction": "^0.5.1",
"@cryptoscan/scanner-sdk": "1.2.0",
"@cryptoscan/solana-send-transaction": "0.5.1",
"@cryptoscan/solana-wallet-sdk": "latest",
"@cryptoscan/swap-sdk": "^1.6.0",
"@solana/web3.js": "1.93.1",
Expand Down

0 comments on commit 5c090f4

Please sign in to comment.