@solana/wallet-adapter-coinbase
Advanced tools
Comparing version 0.1.5 to 0.1.6
@@ -138,2 +138,3 @@ "use strict"; | ||
(signers === null || signers === void 0 ? void 0 : signers.length) && transaction.partialSign(...signers); | ||
sendOptions.preflightCommitment = sendOptions.preflightCommitment || connection.commitment; | ||
const { signature } = yield wallet.signAndSendTransaction(transaction, sendOptions); | ||
@@ -140,0 +141,0 @@ return signature; |
@@ -1,3 +0,5 @@ | ||
import { BaseMessageSignerWalletAdapter, SendTransactionOptions, WalletName, WalletReadyState } from '@solana/wallet-adapter-base'; | ||
import { Connection, PublicKey, Transaction, TransactionSignature } from '@solana/web3.js'; | ||
import type { SendTransactionOptions, WalletName } from '@solana/wallet-adapter-base'; | ||
import { BaseMessageSignerWalletAdapter, WalletReadyState } from '@solana/wallet-adapter-base'; | ||
import type { Connection, Transaction, TransactionSignature } from '@solana/web3.js'; | ||
import { PublicKey } from '@solana/web3.js'; | ||
export interface CoinbaseWalletAdapterConfig { | ||
@@ -4,0 +6,0 @@ } |
{ | ||
"name": "@solana/wallet-adapter-coinbase", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"author": "Solana Maintainers <maintainers@solana.foundation>", | ||
@@ -30,11 +30,11 @@ "repository": "https://github.com/solana-labs/wallet-adapter", | ||
"peerDependencies": { | ||
"@solana/web3.js": "^1.36.0" | ||
"@solana/web3.js": "^1.50.1" | ||
}, | ||
"dependencies": { | ||
"@solana/wallet-adapter-base": "^0.9.9" | ||
"@solana/wallet-adapter-base": "^0.9.10" | ||
}, | ||
"devDependencies": { | ||
"@solana/web3.js": "^1.36.0" | ||
"@solana/web3.js": "^1.50.1" | ||
}, | ||
"gitHead": "6c265383a595fded7eb5806181d6720a050425b2" | ||
"gitHead": "29b57115d1fd7bf097f14ca82cbb1c96e65b8372" | ||
} |
@@ -0,6 +1,5 @@ | ||
import type { EventEmitter, SendTransactionOptions, WalletName } from '@solana/wallet-adapter-base'; | ||
import { | ||
BaseMessageSignerWalletAdapter, | ||
EventEmitter, | ||
scopePollingDetectionStrategy, | ||
SendTransactionOptions, | ||
WalletAccountError, | ||
@@ -11,3 +10,2 @@ WalletConnectionError, | ||
WalletError, | ||
WalletName, | ||
WalletNotConnectedError, | ||
@@ -20,3 +18,4 @@ WalletNotReadyError, | ||
} from '@solana/wallet-adapter-base'; | ||
import { Connection, PublicKey, SendOptions, Transaction, TransactionSignature } from '@solana/web3.js'; | ||
import type { Connection, SendOptions, Transaction, TransactionSignature } from '@solana/web3.js'; | ||
import { PublicKey } from '@solana/web3.js'; | ||
@@ -171,2 +170,4 @@ interface CoinbaseWalletEvents { | ||
sendOptions.preflightCommitment = sendOptions.preflightCommitment || connection.commitment; | ||
const { signature } = await wallet.signAndSendTransaction(transaction, sendOptions); | ||
@@ -173,0 +174,0 @@ return signature; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52645
647