@dynamic-labs/solana-core 4.5.0 → 4.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.5.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.5.0...v4.5.1) (2025-02-05)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* improve sdk performance ([#7992](https://github.com/dynamic-labs/dynamic-auth/issues/7992)) ([7c541d4](https://github.com/dynamic-labs/dynamic-auth/commit/7c541d498b3afe708e468327e53c839826029490))
|
|
8
|
+
|
|
2
9
|
## [4.5.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.4.4...v4.5.0) (2025-02-04)
|
|
3
10
|
|
|
4
11
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/solana-core",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "Core package for utilities and types for solana",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.607",
|
|
22
22
|
"@solana/web3.js": "1.92.1",
|
|
23
23
|
"@solana/spl-token": "0.4.6",
|
|
24
|
-
"@dynamic-labs/assert-package-version": "4.5.
|
|
25
|
-
"@dynamic-labs/rpc-providers": "4.5.
|
|
26
|
-
"@dynamic-labs/types": "4.5.
|
|
27
|
-
"@dynamic-labs/utils": "4.5.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.5.
|
|
29
|
-
"@dynamic-labs/wallet-connector-core": "4.5.
|
|
24
|
+
"@dynamic-labs/assert-package-version": "4.5.1",
|
|
25
|
+
"@dynamic-labs/rpc-providers": "4.5.1",
|
|
26
|
+
"@dynamic-labs/types": "4.5.1",
|
|
27
|
+
"@dynamic-labs/utils": "4.5.1",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.5.1",
|
|
29
|
+
"@dynamic-labs/wallet-connector-core": "4.5.1",
|
|
30
30
|
"eventemitter3": "5.0.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {}
|
|
@@ -169,6 +169,11 @@ class SolanaWalletConnector extends walletConnectorCore.WalletConnectorBase {
|
|
|
169
169
|
isLedgerAddress(address) {
|
|
170
170
|
return utils.isLedgerAddressViaVerifiedCredentials(address, this.verifiedCredentials);
|
|
171
171
|
}
|
|
172
|
+
getBlockExplorerUrlsForCurrentNetwork() {
|
|
173
|
+
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
174
|
+
return ['https://solscan.io/'];
|
|
175
|
+
});
|
|
176
|
+
}
|
|
172
177
|
}
|
|
173
178
|
|
|
174
179
|
exports.SolanaWalletConnector = SolanaWalletConnector;
|
|
@@ -37,4 +37,5 @@ export declare abstract class SolanaWalletConnector extends WalletConnectorBase<
|
|
|
37
37
|
private buildAuthTx;
|
|
38
38
|
setVerifiedCredentials(verifiedCredentials: JwtVerifiedCredential[]): void;
|
|
39
39
|
isLedgerAddress(address: string): boolean;
|
|
40
|
+
getBlockExplorerUrlsForCurrentNetwork(): Promise<string[]>;
|
|
40
41
|
}
|
|
@@ -165,6 +165,11 @@ class SolanaWalletConnector extends WalletConnectorBase {
|
|
|
165
165
|
isLedgerAddress(address) {
|
|
166
166
|
return isLedgerAddressViaVerifiedCredentials(address, this.verifiedCredentials);
|
|
167
167
|
}
|
|
168
|
+
getBlockExplorerUrlsForCurrentNetwork() {
|
|
169
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
170
|
+
return ['https://solscan.io/'];
|
|
171
|
+
});
|
|
172
|
+
}
|
|
168
173
|
}
|
|
169
174
|
|
|
170
175
|
export { SolanaWalletConnector };
|