@dynamic-labs/wallet-book 4.0.0-alpha.26 → 4.0.0-alpha.28
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 +33 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +5 -5
- package/src/helpers/getWalletBookWallet.d.ts +1 -1
- package/wallet-book-fallbacks.cjs +27 -2
- package/wallet-book-fallbacks.js +27 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,37 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.0.0-alpha.28](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.27...v4.0.0-alpha.28) (2024-11-07)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### ⚠ BREAKING CHANGES
|
|
6
|
+
|
|
7
|
+
* upgrade to starknet v6
|
|
8
|
+
See this guide for more details: https://starknetjs.com/docs/guides/migrate/
|
|
9
|
+
There are no code changes required on the Dynamic SDK side, however if you have installed the `starknet` package, you will need to upgrade to >= v6.11.0.
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* new transaction modal and ui for sign/signAll ([#7296](https://github.com/dynamic-labs/dynamic-auth/issues/7296)) ([05a8af1](https://github.com/dynamic-labs/dynamic-auth/commit/05a8af1eb772b2b8087ed96a54caf4b6ae8b79d2)), closes [#7297](https://github.com/dynamic-labs/dynamic-auth/issues/7297) [#7298](https://github.com/dynamic-labs/dynamic-auth/issues/7298)
|
|
14
|
+
* upgrade to starknet v6 ([#7189](https://github.com/dynamic-labs/dynamic-auth/issues/7189)) ([2a6e24e](https://github.com/dynamic-labs/dynamic-auth/commit/2a6e24e4178fcee671b381c28f6a681f4ce52c62))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* transaction confirmation modal popup ([#7368](https://github.com/dynamic-labs/dynamic-auth/issues/7368)) ([3c48658](https://github.com/dynamic-labs/dynamic-auth/commit/3c48658a62874d908bba8f06fb092ff5983ede16))
|
|
20
|
+
|
|
21
|
+
## [4.0.0-alpha.27](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.26...v4.0.0-alpha.27) (2024-11-06)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
* allows adding connection configuration for solana connectors ([#7354](https://github.com/dynamic-labs/dynamic-auth/issues/7354)) ([01e35ee](https://github.com/dynamic-labs/dynamic-auth/commit/01e35ee5bfe4605df48e4188a753111efe483048))
|
|
27
|
+
* allows passing solana connection config to dynamic client ([#7357](https://github.com/dynamic-labs/dynamic-auth/issues/7357)) ([6da14ce](https://github.com/dynamic-labs/dynamic-auth/commit/6da14ceb481147aea31d192fe268be43a8af80e9))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Bug Fixes
|
|
31
|
+
|
|
32
|
+
* check legacy vs eip1599 tx in global connectivity ([#7341](https://github.com/dynamic-labs/dynamic-auth/issues/7341)) ([b223ea7](https://github.com/dynamic-labs/dynamic-auth/commit/b223ea7a5ed5637e11da1040c631c48bc23ba76d))
|
|
33
|
+
* global connectivity multiple transactions in a row ([#7342](https://github.com/dynamic-labs/dynamic-auth/issues/7342)) ([d13c1af](https://github.com/dynamic-labs/dynamic-auth/commit/d13c1afec6b3680961621d8317f55549b3ed428f))
|
|
34
|
+
|
|
2
35
|
## [4.0.0-alpha.26](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.25...v4.0.0-alpha.26) (2024-11-04)
|
|
3
36
|
|
|
4
37
|
## [4.0.0-alpha.25](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.24...v4.0.0-alpha.25) (2024-11-01)
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-book",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.28",
|
|
4
4
|
"author": "Dynamic Labs, Inc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./src/index.cjs",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"zod": "3.22.4",
|
|
20
|
-
"@dynamic-labs/assert-package-version": "4.0.0-alpha.
|
|
21
|
-
"@dynamic-labs/iconic": "4.0.0-alpha.
|
|
22
|
-
"@dynamic-labs/logger": "4.0.0-alpha.
|
|
23
|
-
"@dynamic-labs/utils": "4.0.0-alpha.
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.0.0-alpha.28",
|
|
21
|
+
"@dynamic-labs/iconic": "4.0.0-alpha.28",
|
|
22
|
+
"@dynamic-labs/logger": "4.0.0-alpha.28",
|
|
23
|
+
"@dynamic-labs/utils": "4.0.0-alpha.28",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
25
|
"util": "0.12.5"
|
|
26
26
|
},
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { WalletBookSchema, WalletSchema } from '../schemas';
|
|
2
|
-
export declare const getWalletBookWallet: (walletBook: WalletBookSchema, walletKey: string | undefined, walletFallback?: WalletSchema) => WalletSchema;
|
|
2
|
+
export declare const getWalletBookWallet: (walletBook: WalletBookSchema | undefined, walletKey: string | undefined, walletFallback?: WalletSchema) => WalletSchema;
|
|
@@ -654,8 +654,19 @@ var wallets = {
|
|
|
654
654
|
edgeId: "hkkpjehhcnhgefhbdcgfkeegglpjchdc",
|
|
655
655
|
firefoxId: "braavos-wallet"
|
|
656
656
|
},
|
|
657
|
+
injectedConfig: [
|
|
658
|
+
{
|
|
659
|
+
chain: "starknet",
|
|
660
|
+
extensionLocators: [
|
|
661
|
+
],
|
|
662
|
+
windowLocations: [
|
|
663
|
+
"braavos"
|
|
664
|
+
]
|
|
665
|
+
}
|
|
666
|
+
],
|
|
657
667
|
mobile: {
|
|
658
668
|
androidId: "app.braavos.wallet",
|
|
669
|
+
inAppBrowser: "https://link.braavos.app/dapp/{{encodedDappURI}}",
|
|
659
670
|
iosId: "id1636013523"
|
|
660
671
|
},
|
|
661
672
|
name: "Braavos"
|
|
@@ -1269,7 +1280,7 @@ var wallets = {
|
|
|
1269
1280
|
},
|
|
1270
1281
|
unknown: {
|
|
1271
1282
|
brand: {
|
|
1272
|
-
spriteId: "
|
|
1283
|
+
spriteId: "unknown-wallet"
|
|
1273
1284
|
},
|
|
1274
1285
|
mobile: {
|
|
1275
1286
|
androidId: "enable-android",
|
|
@@ -1328,7 +1339,7 @@ var wallets = {
|
|
|
1328
1339
|
},
|
|
1329
1340
|
fallbackconnector: {
|
|
1330
1341
|
brand: {
|
|
1331
|
-
spriteId: "
|
|
1342
|
+
spriteId: "unknown-wallet"
|
|
1332
1343
|
},
|
|
1333
1344
|
mobile: {
|
|
1334
1345
|
androidId: "enable-android",
|
|
@@ -1362,6 +1373,20 @@ var wallets = {
|
|
|
1362
1373
|
}
|
|
1363
1374
|
],
|
|
1364
1375
|
name: "Oyl Wallet"
|
|
1376
|
+
},
|
|
1377
|
+
abstract: {
|
|
1378
|
+
brand: {
|
|
1379
|
+
alt: "Abstract",
|
|
1380
|
+
spriteId: "abstract"
|
|
1381
|
+
},
|
|
1382
|
+
injectedConfig: [
|
|
1383
|
+
{
|
|
1384
|
+
chain: "evm",
|
|
1385
|
+
extensionLocators: [
|
|
1386
|
+
]
|
|
1387
|
+
}
|
|
1388
|
+
],
|
|
1389
|
+
name: "Abstract"
|
|
1365
1390
|
}
|
|
1366
1391
|
};
|
|
1367
1392
|
var walletBookFallbacks = {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -650,8 +650,19 @@ var wallets = {
|
|
|
650
650
|
edgeId: "hkkpjehhcnhgefhbdcgfkeegglpjchdc",
|
|
651
651
|
firefoxId: "braavos-wallet"
|
|
652
652
|
},
|
|
653
|
+
injectedConfig: [
|
|
654
|
+
{
|
|
655
|
+
chain: "starknet",
|
|
656
|
+
extensionLocators: [
|
|
657
|
+
],
|
|
658
|
+
windowLocations: [
|
|
659
|
+
"braavos"
|
|
660
|
+
]
|
|
661
|
+
}
|
|
662
|
+
],
|
|
653
663
|
mobile: {
|
|
654
664
|
androidId: "app.braavos.wallet",
|
|
665
|
+
inAppBrowser: "https://link.braavos.app/dapp/{{encodedDappURI}}",
|
|
655
666
|
iosId: "id1636013523"
|
|
656
667
|
},
|
|
657
668
|
name: "Braavos"
|
|
@@ -1265,7 +1276,7 @@ var wallets = {
|
|
|
1265
1276
|
},
|
|
1266
1277
|
unknown: {
|
|
1267
1278
|
brand: {
|
|
1268
|
-
spriteId: "
|
|
1279
|
+
spriteId: "unknown-wallet"
|
|
1269
1280
|
},
|
|
1270
1281
|
mobile: {
|
|
1271
1282
|
androidId: "enable-android",
|
|
@@ -1324,7 +1335,7 @@ var wallets = {
|
|
|
1324
1335
|
},
|
|
1325
1336
|
fallbackconnector: {
|
|
1326
1337
|
brand: {
|
|
1327
|
-
spriteId: "
|
|
1338
|
+
spriteId: "unknown-wallet"
|
|
1328
1339
|
},
|
|
1329
1340
|
mobile: {
|
|
1330
1341
|
androidId: "enable-android",
|
|
@@ -1358,6 +1369,20 @@ var wallets = {
|
|
|
1358
1369
|
}
|
|
1359
1370
|
],
|
|
1360
1371
|
name: "Oyl Wallet"
|
|
1372
|
+
},
|
|
1373
|
+
abstract: {
|
|
1374
|
+
brand: {
|
|
1375
|
+
alt: "Abstract",
|
|
1376
|
+
spriteId: "abstract"
|
|
1377
|
+
},
|
|
1378
|
+
injectedConfig: [
|
|
1379
|
+
{
|
|
1380
|
+
chain: "evm",
|
|
1381
|
+
extensionLocators: [
|
|
1382
|
+
]
|
|
1383
|
+
}
|
|
1384
|
+
],
|
|
1385
|
+
name: "Abstract"
|
|
1361
1386
|
}
|
|
1362
1387
|
};
|
|
1363
1388
|
var walletBookFallbacks = {
|