@dynamic-labs/algorand 2.0.0-alpha.6 → 2.0.0-alpha.8

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,25 @@
1
1
 
2
+ ## [2.0.0-alpha.8](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.7...v2.0.0-alpha.8) (2024-03-04)
3
+
4
+ ## [2.0.0-alpha.7](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.6...v2.0.0-alpha.7) (2024-02-28)
5
+
6
+
7
+ ### ⚠ BREAKING CHANGES
8
+
9
+ * add networkValidationMode and remove enableForcedNetworkValidation (#4778)
10
+
11
+ ### Features
12
+
13
+ * add bitget and okx wallets ([51fab41](https://github.com/dynamic-labs/DynamicAuth/commit/51fab413096fd89ce99c6c617cf4f3f5db9bf44d))
14
+ * add networkValidationMode and remove enableForcedNetworkValidation ([#4778](https://github.com/dynamic-labs/DynamicAuth/issues/4778)) ([ccb9576](https://github.com/dynamic-labs/DynamicAuth/commit/ccb9576c81b2c570185f5126d6d1fcfcbb5ac9e3))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **GVTY-1243:** non evm onramp urls ([#4791](https://github.com/dynamic-labs/DynamicAuth/issues/4791)) ([fea602e](https://github.com/dynamic-labs/DynamicAuth/commit/fea602e2835b4bb9bc096b96375fa97297bf35f1))
20
+ * revert use enableForcedNetworkValidation on connect-only ([#4750](https://github.com/dynamic-labs/DynamicAuth/issues/4750)) ([#4772](https://github.com/dynamic-labs/DynamicAuth/issues/4772)) ([b871c22](https://github.com/dynamic-labs/DynamicAuth/commit/b871c2295f39230bc34ae1fca5f8817cd9251a17))
21
+ * use correct chromeId for okx and bitget wallets and remove group from coin98 ([#4795](https://github.com/dynamic-labs/DynamicAuth/issues/4795)) ([e63bad7](https://github.com/dynamic-labs/DynamicAuth/commit/e63bad76ed06636151212c915a102359a03b4218))
22
+
2
23
  ## [2.0.0-alpha.6](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2024-02-26)
3
24
 
4
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/algorand",
3
- "version": "2.0.0-alpha.6",
3
+ "version": "2.0.0-alpha.8",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -26,11 +26,11 @@
26
26
  "./package.json": "./package.json"
27
27
  },
28
28
  "dependencies": {
29
- "@perawallet/connect": "^1.3.4",
29
+ "@perawallet/connect": "1.3.4",
30
30
  "@randlabs/myalgo-connect": "1.4.2",
31
- "@dynamic-labs/utils": "2.0.0-alpha.6",
32
- "@dynamic-labs/wallet-book": "2.0.0-alpha.6",
33
- "@dynamic-labs/wallet-connector-core": "2.0.0-alpha.6"
31
+ "@dynamic-labs/utils": "2.0.0-alpha.8",
32
+ "@dynamic-labs/wallet-book": "2.0.0-alpha.8",
33
+ "@dynamic-labs/wallet-connector-core": "2.0.0-alpha.8"
34
34
  },
35
35
  "peerDependencies": {}
36
36
  }
@@ -16,6 +16,7 @@ class MyAlgoWalletConnector extends AlgorandWalletConnector.AlgorandWalletConnec
16
16
  constructor(opts) {
17
17
  super(Object.assign(Object.assign({}, opts), { cacheKey: 'myalgo' }));
18
18
  this.name = 'MyAlgo';
19
+ this.overrideKey = 'myalgo';
19
20
  this.canConnectViaCustodialService = true;
20
21
  }
21
22
  getClient() {
@@ -3,6 +3,7 @@ import { IMyAlgoSigner } from './myalgoSigner';
3
3
  export declare class MyAlgoWalletConnector extends AlgorandWalletConnector {
4
4
  private client?;
5
5
  name: string;
6
+ overrideKey: string;
6
7
  canConnectViaCustodialService: boolean;
7
8
  constructor(opts: any);
8
9
  private getClient;
@@ -8,6 +8,7 @@ class MyAlgoWalletConnector extends AlgorandWalletConnector {
8
8
  constructor(opts) {
9
9
  super(Object.assign(Object.assign({}, opts), { cacheKey: 'myalgo' }));
10
10
  this.name = 'MyAlgo';
11
+ this.overrideKey = 'myalgo';
11
12
  this.canConnectViaCustodialService = true;
12
13
  }
13
14
  getClient() {
@@ -13,6 +13,7 @@ class PeraWalletConnector extends AlgorandWalletConnector.AlgorandWalletConnecto
13
13
  super(Object.assign(Object.assign({}, opts), { cacheKey: 'pera' }));
14
14
  this.canConnectViaCustodialService = true;
15
15
  this.name = 'Pera Wallet';
16
+ this.overrideKey = 'perawallet';
16
17
  }
17
18
  getClient() {
18
19
  if (!this.client) {
@@ -8,6 +8,7 @@ export declare class PeraWalletConnector extends AlgorandWalletConnector {
8
8
  private client?;
9
9
  canConnectViaCustodialService: boolean;
10
10
  name: string;
11
+ overrideKey: string;
11
12
  constructor(opts: PeraWalletConnectorOpts);
12
13
  private getClient;
13
14
  getNetwork(): Promise<number | undefined>;
@@ -9,6 +9,7 @@ class PeraWalletConnector extends AlgorandWalletConnector {
9
9
  super(Object.assign(Object.assign({}, opts), { cacheKey: 'pera' }));
10
10
  this.canConnectViaCustodialService = true;
11
11
  this.name = 'Pera Wallet';
12
+ this.overrideKey = 'perawallet';
12
13
  }
13
14
  getClient() {
14
15
  if (!this.client) {