@aptos-labs/wallet-adapter-core 7.4.0 → 7.5.0

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/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const WALLET_ADAPTER_CORE_VERSION = "7.4.0";
1
+ export declare const WALLET_ADAPTER_CORE_VERSION = "7.5.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-labs/wallet-adapter-core",
3
- "version": "7.4.0",
3
+ "version": "7.5.0",
4
4
  "description": "Aptos Wallet Adapter Core",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -40,7 +40,7 @@
40
40
  "@aptos-labs/wallet-adapter-tsconfig": "0.0.2"
41
41
  },
42
42
  "dependencies": {
43
- "@aptos-connect/wallet-adapter-plugin": "2.5.2",
43
+ "@aptos-connect/wallet-adapter-plugin": "^2.6.1",
44
44
  "@aptos-labs/wallet-standard": "^0.5.2",
45
45
  "buffer": "^6.0.3",
46
46
  "eventemitter3": "^4.0.7",
package/src/WalletCore.ts CHANGED
@@ -115,7 +115,7 @@ export type AdapterNotDetectedWallet = Omit<
115
115
  };
116
116
 
117
117
  export interface DappConfig {
118
- network: Network;
118
+ network: Network | 'shelbydevnet';
119
119
  /**
120
120
  * If provided, the wallet adapter will submit transactions using the provided
121
121
  * transaction submitter rather than via the wallet.
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const WALLET_ADAPTER_CORE_VERSION = "7.4.0";
1
+ export const WALLET_ADAPTER_CORE_VERSION = "7.5.0";