@taquito/beacon-wallet 24.3.0-beta.1 → 24.3.0-beta.3
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/README.md +2 -2
- package/dist/lib/taquito-beacon-wallet.js +6 -17
- package/dist/lib/version.js +2 -2
- package/dist/taquito-beacon-wallet.es6.js +8 -19
- package/dist/taquito-beacon-wallet.es6.js.map +1 -1
- package/dist/taquito-beacon-wallet.umd.js +8 -19
- package/dist/taquito-beacon-wallet.umd.js.map +1 -1
- package/package.json +23 -81
- package/signature.json +0 -175
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Taquito Beacon Wallet package
|
|
2
2
|
|
|
3
|
-
_Documentation can be found [here](https://taquito.io/docs/wallet_API)_
|
|
3
|
+
_Documentation can be found [here](https://taquito.io/docs/wallet_API)_
|
|
4
4
|
_TypeDoc style documentation is available [here](https://taquito.io/typedoc/modules/_taquito_beacon_wallet.html)_
|
|
5
5
|
|
|
6
6
|
## General Information
|
|
@@ -26,7 +26,7 @@ import { BeaconWallet } from '@taquito/beacon-wallet';
|
|
|
26
26
|
const options = {
|
|
27
27
|
name: 'MyAwesomeDapp',
|
|
28
28
|
iconUrl: 'https://taquito.io/img/favicon.svg',
|
|
29
|
-
network: { type: '
|
|
29
|
+
network: { type: 'shadownet' },
|
|
30
30
|
enableMetrics: true,
|
|
31
31
|
};
|
|
32
32
|
const wallet = new BeaconWallet(options);
|
|
@@ -25,29 +25,18 @@ Object.defineProperty(exports, "BeaconEvent", { enumerable: true, get: function
|
|
|
25
25
|
/**
|
|
26
26
|
* Default matrix relay nodes curated by Taquito.
|
|
27
27
|
*
|
|
28
|
-
* Includes only
|
|
29
|
-
*
|
|
30
|
-
*
|
|
28
|
+
* Includes only Trilitech-operated `octez.io` nodes. These replace the Beacon
|
|
29
|
+
* SDK built-in defaults so that Taquito controls which relay infrastructure
|
|
30
|
+
* its users hit.
|
|
31
31
|
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
* to prevent connection attempts to dead servers.
|
|
32
|
+
* Non-European regions are intentionally empty because Taquito no longer
|
|
33
|
+
* curates Papers-operated relay nodes for those regions.
|
|
35
34
|
*
|
|
36
35
|
* Users can still override specific regions (or the entire list) by passing
|
|
37
36
|
* their own `matrixNodes` in the BeaconWallet constructor options.
|
|
38
37
|
*/
|
|
39
38
|
const TAQUITO_CURATED_MATRIX_NODES = {
|
|
40
39
|
[beacon_dapp_1.Regions.EUROPE_WEST]: [
|
|
41
|
-
// Papers
|
|
42
|
-
'beacon-node-1.diamond.papers.tech',
|
|
43
|
-
'beacon-node-1.sky.papers.tech',
|
|
44
|
-
'beacon-node-2.sky.papers.tech',
|
|
45
|
-
'beacon-node-1.hope.papers.tech',
|
|
46
|
-
'beacon-node-1.hope-2.papers.tech',
|
|
47
|
-
'beacon-node-1.hope-3.papers.tech',
|
|
48
|
-
'beacon-node-1.hope-4.papers.tech',
|
|
49
|
-
'beacon-node-1.hope-5.papers.tech',
|
|
50
|
-
// Trilitech
|
|
51
40
|
'beacon-node-1.octez.io',
|
|
52
41
|
'beacon-node-2.octez.io',
|
|
53
42
|
'beacon-node-3.octez.io',
|
|
@@ -57,7 +46,7 @@ const TAQUITO_CURATED_MATRIX_NODES = {
|
|
|
57
46
|
'beacon-node-7.octez.io',
|
|
58
47
|
'beacon-node-8.octez.io',
|
|
59
48
|
],
|
|
60
|
-
//
|
|
49
|
+
// Left empty so Taquito does not point users at soon-to-be-retired Papers relays
|
|
61
50
|
[beacon_dapp_1.Regions.NORTH_AMERICA_EAST]: [],
|
|
62
51
|
[beacon_dapp_1.Regions.NORTH_AMERICA_WEST]: [],
|
|
63
52
|
[beacon_dapp_1.Regions.ASIA_EAST]: [],
|
package/dist/lib/version.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
5
5
|
exports.VERSION = {
|
|
6
|
-
"commitHash": "
|
|
7
|
-
"version": "24.3.0-beta.
|
|
6
|
+
"commitHash": "a312cd3f4fc0ab0fb3351bfffe6ad855772cb077",
|
|
7
|
+
"version": "24.3.0-beta.3"
|
|
8
8
|
};
|
|
@@ -32,8 +32,8 @@ class MissingRequiredScopes extends PermissionDeniedError {
|
|
|
32
32
|
|
|
33
33
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
34
34
|
const VERSION = {
|
|
35
|
-
"commitHash": "
|
|
36
|
-
"version": "24.3.0-beta.
|
|
35
|
+
"commitHash": "a312cd3f4fc0ab0fb3351bfffe6ad855772cb077",
|
|
36
|
+
"version": "24.3.0-beta.3"
|
|
37
37
|
};
|
|
38
38
|
|
|
39
39
|
/**
|
|
@@ -43,29 +43,18 @@ const VERSION = {
|
|
|
43
43
|
/**
|
|
44
44
|
* Default matrix relay nodes curated by Taquito.
|
|
45
45
|
*
|
|
46
|
-
* Includes only
|
|
47
|
-
*
|
|
48
|
-
*
|
|
46
|
+
* Includes only Trilitech-operated `octez.io` nodes. These replace the Beacon
|
|
47
|
+
* SDK built-in defaults so that Taquito controls which relay infrastructure
|
|
48
|
+
* its users hit.
|
|
49
49
|
*
|
|
50
|
-
*
|
|
51
|
-
*
|
|
52
|
-
* to prevent connection attempts to dead servers.
|
|
50
|
+
* Non-European regions are intentionally empty because Taquito no longer
|
|
51
|
+
* curates Papers-operated relay nodes for those regions.
|
|
53
52
|
*
|
|
54
53
|
* Users can still override specific regions (or the entire list) by passing
|
|
55
54
|
* their own `matrixNodes` in the BeaconWallet constructor options.
|
|
56
55
|
*/
|
|
57
56
|
const TAQUITO_CURATED_MATRIX_NODES = {
|
|
58
57
|
[Regions.EUROPE_WEST]: [
|
|
59
|
-
// Papers
|
|
60
|
-
'beacon-node-1.diamond.papers.tech',
|
|
61
|
-
'beacon-node-1.sky.papers.tech',
|
|
62
|
-
'beacon-node-2.sky.papers.tech',
|
|
63
|
-
'beacon-node-1.hope.papers.tech',
|
|
64
|
-
'beacon-node-1.hope-2.papers.tech',
|
|
65
|
-
'beacon-node-1.hope-3.papers.tech',
|
|
66
|
-
'beacon-node-1.hope-4.papers.tech',
|
|
67
|
-
'beacon-node-1.hope-5.papers.tech',
|
|
68
|
-
// Trilitech
|
|
69
58
|
'beacon-node-1.octez.io',
|
|
70
59
|
'beacon-node-2.octez.io',
|
|
71
60
|
'beacon-node-3.octez.io',
|
|
@@ -75,7 +64,7 @@ const TAQUITO_CURATED_MATRIX_NODES = {
|
|
|
75
64
|
'beacon-node-7.octez.io',
|
|
76
65
|
'beacon-node-8.octez.io',
|
|
77
66
|
],
|
|
78
|
-
//
|
|
67
|
+
// Left empty so Taquito does not point users at soon-to-be-retired Papers relays
|
|
79
68
|
[Regions.NORTH_AMERICA_EAST]: [],
|
|
80
69
|
[Regions.NORTH_AMERICA_WEST]: [],
|
|
81
70
|
[Regions.ASIA_EAST]: [],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taquito-beacon-wallet.es6.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"taquito-beacon-wallet.es6.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
|
|
32
32
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
33
33
|
const VERSION = {
|
|
34
|
-
"commitHash": "
|
|
35
|
-
"version": "24.3.0-beta.
|
|
34
|
+
"commitHash": "a312cd3f4fc0ab0fb3351bfffe6ad855772cb077",
|
|
35
|
+
"version": "24.3.0-beta.3"
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
/**
|
|
@@ -42,29 +42,18 @@
|
|
|
42
42
|
/**
|
|
43
43
|
* Default matrix relay nodes curated by Taquito.
|
|
44
44
|
*
|
|
45
|
-
* Includes only
|
|
46
|
-
*
|
|
47
|
-
*
|
|
45
|
+
* Includes only Trilitech-operated `octez.io` nodes. These replace the Beacon
|
|
46
|
+
* SDK built-in defaults so that Taquito controls which relay infrastructure
|
|
47
|
+
* its users hit.
|
|
48
48
|
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
* to prevent connection attempts to dead servers.
|
|
49
|
+
* Non-European regions are intentionally empty because Taquito no longer
|
|
50
|
+
* curates Papers-operated relay nodes for those regions.
|
|
52
51
|
*
|
|
53
52
|
* Users can still override specific regions (or the entire list) by passing
|
|
54
53
|
* their own `matrixNodes` in the BeaconWallet constructor options.
|
|
55
54
|
*/
|
|
56
55
|
const TAQUITO_CURATED_MATRIX_NODES = {
|
|
57
56
|
[beaconDapp.Regions.EUROPE_WEST]: [
|
|
58
|
-
// Papers
|
|
59
|
-
'beacon-node-1.diamond.papers.tech',
|
|
60
|
-
'beacon-node-1.sky.papers.tech',
|
|
61
|
-
'beacon-node-2.sky.papers.tech',
|
|
62
|
-
'beacon-node-1.hope.papers.tech',
|
|
63
|
-
'beacon-node-1.hope-2.papers.tech',
|
|
64
|
-
'beacon-node-1.hope-3.papers.tech',
|
|
65
|
-
'beacon-node-1.hope-4.papers.tech',
|
|
66
|
-
'beacon-node-1.hope-5.papers.tech',
|
|
67
|
-
// Trilitech
|
|
68
57
|
'beacon-node-1.octez.io',
|
|
69
58
|
'beacon-node-2.octez.io',
|
|
70
59
|
'beacon-node-3.octez.io',
|
|
@@ -74,7 +63,7 @@
|
|
|
74
63
|
'beacon-node-7.octez.io',
|
|
75
64
|
'beacon-node-8.octez.io',
|
|
76
65
|
],
|
|
77
|
-
//
|
|
66
|
+
// Left empty so Taquito does not point users at soon-to-be-retired Papers relays
|
|
78
67
|
[beaconDapp.Regions.NORTH_AMERICA_EAST]: [],
|
|
79
68
|
[beaconDapp.Regions.NORTH_AMERICA_WEST]: [],
|
|
80
69
|
[beaconDapp.Regions.ASIA_EAST]: [],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taquito-beacon-wallet.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"taquito-beacon-wallet.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/beacon-wallet",
|
|
3
|
-
"version": "24.3.0-beta.
|
|
3
|
+
"version": "24.3.0-beta.3",
|
|
4
4
|
"description": "TZIP-10 Beacon wallet integration for Taquito dapps built on the Beacon SDK DAppClient.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"taquito",
|
|
@@ -15,19 +15,18 @@
|
|
|
15
15
|
"typings": "dist/types/taquito-beacon-wallet.d.ts",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
+
"types": "./dist/types/taquito-beacon-wallet.d.ts",
|
|
18
19
|
"import": "./dist/taquito-beacon-wallet.es6.js",
|
|
19
|
-
"require": "./dist/taquito-beacon-wallet.umd.js"
|
|
20
|
-
"types": "./dist/types/taquito-beacon-wallet.d.ts"
|
|
20
|
+
"require": "./dist/taquito-beacon-wallet.umd.js"
|
|
21
21
|
},
|
|
22
22
|
"./types": {
|
|
23
|
+
"types": "./dist/types/beacon-types.d.ts",
|
|
23
24
|
"import": "./dist/beacon-types.es6.js",
|
|
24
|
-
"require": "./dist/beacon-types.umd.js"
|
|
25
|
-
"types": "./dist/types/beacon-types.d.ts"
|
|
25
|
+
"require": "./dist/beacon-types.umd.js"
|
|
26
26
|
},
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
|
-
"signature.json",
|
|
31
30
|
"dist"
|
|
32
31
|
],
|
|
33
32
|
"publishConfig": {
|
|
@@ -53,9 +52,9 @@
|
|
|
53
52
|
"node": ">=22"
|
|
54
53
|
},
|
|
55
54
|
"scripts": {
|
|
56
|
-
"test": "
|
|
57
|
-
"test:watch": "
|
|
58
|
-
"test:prod": "npm run lint && npm run test
|
|
55
|
+
"test": "vitest run --config ./vitest.config.ts",
|
|
56
|
+
"test:watch": "vitest --config ./vitest.config.ts",
|
|
57
|
+
"test:prod": "npm run lint && npm run test",
|
|
59
58
|
"lint": "eslint --ext .js,.ts .",
|
|
60
59
|
"precommit": "lint-staged",
|
|
61
60
|
"prebuild": "rimraf dist",
|
|
@@ -70,102 +69,45 @@
|
|
|
70
69
|
"eslint --fix"
|
|
71
70
|
]
|
|
72
71
|
},
|
|
73
|
-
"jest": {
|
|
74
|
-
"transform": {
|
|
75
|
-
".(ts|tsx)": [
|
|
76
|
-
"ts-jest",
|
|
77
|
-
{
|
|
78
|
-
"useESM": true,
|
|
79
|
-
"allowJs": true,
|
|
80
|
-
"tsconfig": {
|
|
81
|
-
"allowJs": true,
|
|
82
|
-
"module": "es2020"
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
],
|
|
86
|
-
".(js|jsx|mjs)": [
|
|
87
|
-
"ts-jest",
|
|
88
|
-
{
|
|
89
|
-
"useESM": true,
|
|
90
|
-
"allowJs": true,
|
|
91
|
-
"tsconfig": {
|
|
92
|
-
"allowJs": true,
|
|
93
|
-
"module": "es2020"
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
]
|
|
97
|
-
},
|
|
98
|
-
"testEnvironment": "node",
|
|
99
|
-
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
100
|
-
"moduleFileExtensions": [
|
|
101
|
-
"ts",
|
|
102
|
-
"tsx",
|
|
103
|
-
"js",
|
|
104
|
-
"jsx",
|
|
105
|
-
"json",
|
|
106
|
-
"mjs"
|
|
107
|
-
],
|
|
108
|
-
"moduleNameMapper": {
|
|
109
|
-
"^@taquito/taquito$": "<rootDir>/../taquito/src/taquito.ts",
|
|
110
|
-
"^(\\.{1,2}/.*)\\.js$": "$1"
|
|
111
|
-
},
|
|
112
|
-
"transformIgnorePatterns": [
|
|
113
|
-
"/node_modules/(?!(@ecadlabs|@stablelib)/.*)"
|
|
114
|
-
],
|
|
115
|
-
"extensionsToTreatAsEsm": [
|
|
116
|
-
".ts",
|
|
117
|
-
".tsx",
|
|
118
|
-
".mts"
|
|
119
|
-
],
|
|
120
|
-
"coveragePathIgnorePatterns": [
|
|
121
|
-
"/node_modules/",
|
|
122
|
-
"/test/"
|
|
123
|
-
],
|
|
124
|
-
"collectCoverageFrom": [
|
|
125
|
-
"src/**/*.{js,ts}"
|
|
126
|
-
]
|
|
127
|
-
},
|
|
128
72
|
"dependencies": {
|
|
129
|
-
"@ecadlabs/beacon-dapp": "
|
|
130
|
-
"@ecadlabs/beacon-types": "
|
|
131
|
-
"@taquito/core": "^24.3.0-beta.
|
|
132
|
-
"@taquito/taquito": "^24.3.0-beta.
|
|
73
|
+
"@ecadlabs/beacon-dapp": "4.8.1-ecad.4",
|
|
74
|
+
"@ecadlabs/beacon-types": "4.8.1-ecad.4",
|
|
75
|
+
"@taquito/core": "^24.3.0-beta.3",
|
|
76
|
+
"@taquito/taquito": "^24.3.0-beta.3",
|
|
77
|
+
"@taquito/utils": "^24.3.0-beta.3",
|
|
133
78
|
"crypto-browserify": "^3.12.1",
|
|
79
|
+
"typedarray-to-buffer": "^4.0.0",
|
|
134
80
|
"util": "^0.12.5"
|
|
135
81
|
},
|
|
136
82
|
"devDependencies": {
|
|
137
|
-
"@ecadlabs/beacon-transport-postmessage": "
|
|
138
|
-
"@ecadlabs/beacon-ui": "
|
|
83
|
+
"@ecadlabs/beacon-transport-postmessage": "4.8.1-ecad.4",
|
|
84
|
+
"@ecadlabs/beacon-ui": "4.8.1-ecad.4",
|
|
139
85
|
"@types/bluebird": "^3.5.42",
|
|
140
|
-
"@types/chrome": "0.
|
|
141
|
-
"@types/
|
|
142
|
-
"@types/node": "^20",
|
|
86
|
+
"@types/chrome": "0.1.40",
|
|
87
|
+
"@types/node": "^22.0.0",
|
|
143
88
|
"@types/ws": "^8.5.12",
|
|
144
89
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
145
90
|
"@typescript-eslint/parser": "^6.21.0",
|
|
146
91
|
"colors": "^1.4.0",
|
|
147
|
-
"coveralls": "^3.1.1",
|
|
148
92
|
"cross-env": "^7.0.3",
|
|
149
93
|
"eslint": "^8.57.0",
|
|
150
|
-
"fake-indexeddb": "^6.
|
|
151
|
-
"jest": "^29.7.0",
|
|
152
|
-
"jest-config": "^29.7.0",
|
|
94
|
+
"fake-indexeddb": "^6.2.5",
|
|
153
95
|
"lint-staged": "^15.2.7",
|
|
154
96
|
"lodash.camelcase": "^4.3.0",
|
|
155
97
|
"prettier": "^3.3.3",
|
|
156
98
|
"prompt": "^1.3.0",
|
|
157
99
|
"replace-in-file": "^8.1.0",
|
|
158
100
|
"rimraf": "^6.0.1",
|
|
159
|
-
"rollup": "^4.
|
|
101
|
+
"rollup": "^4.60.1",
|
|
160
102
|
"rollup-plugin-json": "^4.0.0",
|
|
161
103
|
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
162
|
-
"rollup-plugin-typescript2": "^0.
|
|
104
|
+
"rollup-plugin-typescript2": "^0.37.0",
|
|
163
105
|
"shelljs": "^0.8.5",
|
|
164
|
-
"ts-
|
|
106
|
+
"ts-loader": "^9.5.7",
|
|
165
107
|
"ts-node": "^10.9.2",
|
|
166
108
|
"ts-toolbelt": "^9.6.0",
|
|
167
109
|
"typescript": "^5.9.3",
|
|
168
|
-
"webpack": "^5.
|
|
110
|
+
"webpack": "^5.106.1",
|
|
169
111
|
"webpack-cli": "^5.1.4"
|
|
170
112
|
},
|
|
171
113
|
"gitHead": "551e35aeff7d6dcde1c72284238c0ed3c3aae77e"
|
package/signature.json
DELETED
|
@@ -1,175 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"entries": [
|
|
3
|
-
{
|
|
4
|
-
"entry": "files/v1alpha2",
|
|
5
|
-
"value": {
|
|
6
|
-
"files": [
|
|
7
|
-
{
|
|
8
|
-
"path": "dist/taquito-beacon-wallet.es5.js",
|
|
9
|
-
"sha512": "658a1ea5cec9a5a9ff0b67d8cdc4faf66af004c2e294522ba780d88f22dd7c245b5f63cd6866752203fb9408dd7948b73a9b2e979b8c6119507821e178a72ae2"
|
|
10
|
-
},
|
|
11
|
-
{
|
|
12
|
-
"path": "dist/lib/taquito-beacon-wallet.js",
|
|
13
|
-
"sha512": "0a161618b9beb820232a5446162ffaa02f7bf3ea74b4d3f8a5aaa08b780c8265aa50bd362d82a97db773c466e55c8254ac2655741ec8e76772cf5cb5b3fb75e2"
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"path": "dist/taquito-beacon-wallet.umd.js",
|
|
17
|
-
"sha512": "a725f6e9c038a73ea2e0961c66defa964a05d3ac036aa75b0c583263b50063e75fa85d1adeb47f5c04eca604e38ef66ace3241374e9860e1d7e1e951b3764c59"
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"path": "dist/taquito-beacon-wallet.es5.js.map",
|
|
21
|
-
"sha512": "fe50738a39b96d628188c1cb4994506aab5740b2e713a8a5574c5c10f6961500855c82ffca66c484ba15c45a6c6c8f7302c95e3db23c1b2fdd6bd602a9d74c0a"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"path": "dist/lib/taquito-beacon-wallet.js.map",
|
|
25
|
-
"sha512": "9c4e154190c12e1586501d6f83cf68fa115a9f723213c7d37b8f6337d1a2583daf55dff5c1003949f5af889f98c9c4e0190866f12d9d5200865f3ed094da1961"
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"path": "dist/taquito-beacon-wallet.umd.js.map",
|
|
29
|
-
"sha512": "c431f7badafa5d0ac145a51d04cb8d12460fd27a7a4676b08a9a1278933cc4d82e664b6bdebfe1cf87c0e081f3cf27123fcfd1277effdade1da4e6d43f90c6dd"
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"path": "dist/types/taquito-beacon-wallet.d.ts",
|
|
33
|
-
"sha512": "72f96db06619b57573d9323b808f1d89baa70310485ed33b197c0b241b31e8790d88db91e9a35d016e34f0f5f082c7544e899f76a4a95565affd45915b7ac718"
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"entry": "identity/v1alpha2",
|
|
40
|
-
"value": {
|
|
41
|
-
"identity": {
|
|
42
|
-
"keybaseUser": "jevonearth"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"entry": "npmCompatiblePackageJson/v1alpha2",
|
|
48
|
-
"value": {
|
|
49
|
-
"packageJsonProperties": [
|
|
50
|
-
"author",
|
|
51
|
-
"dependencies",
|
|
52
|
-
"description",
|
|
53
|
-
"devDependencies",
|
|
54
|
-
"engines",
|
|
55
|
-
"files",
|
|
56
|
-
"gitHead",
|
|
57
|
-
"jest",
|
|
58
|
-
"keywords",
|
|
59
|
-
"license",
|
|
60
|
-
"lint-staged",
|
|
61
|
-
"main",
|
|
62
|
-
"module",
|
|
63
|
-
"name",
|
|
64
|
-
"publishConfig",
|
|
65
|
-
"repository",
|
|
66
|
-
"scripts",
|
|
67
|
-
"typings",
|
|
68
|
-
"version"
|
|
69
|
-
],
|
|
70
|
-
"sha512": "67c296fde031aa5011bad581cb975edc3d5fbe2afbf299b1e6d7f1c527d7a3047dc0958fbc92d9b4f563b52189fd58cd948bf00bcd1d67a9173f7862d8926dfc"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"entry": "packageJson/v1alpha2",
|
|
75
|
-
"value": {
|
|
76
|
-
"packageJson": {
|
|
77
|
-
"name": "@taquito/beacon-wallet",
|
|
78
|
-
"version": "8.0.4-beta.0",
|
|
79
|
-
"description": "Beacon wallet provider",
|
|
80
|
-
"keywords": [
|
|
81
|
-
"tezos",
|
|
82
|
-
"blockchain",
|
|
83
|
-
"websocket"
|
|
84
|
-
],
|
|
85
|
-
"main": "dist/taquito-beacon-wallet.umd.js",
|
|
86
|
-
"module": "dist/taquito-beacon-wallet.es5.js",
|
|
87
|
-
"typings": "dist/types/taquito-beacon-wallet.d.ts",
|
|
88
|
-
"files": [
|
|
89
|
-
"signature.json",
|
|
90
|
-
"dist"
|
|
91
|
-
],
|
|
92
|
-
"publishConfig": {
|
|
93
|
-
"access": "public"
|
|
94
|
-
},
|
|
95
|
-
"author": "Simon Boissonneault-Robert <simon@ecadlabs.com>",
|
|
96
|
-
"repository": {
|
|
97
|
-
"type": "git",
|
|
98
|
-
"url": ""
|
|
99
|
-
},
|
|
100
|
-
"license": "MIT",
|
|
101
|
-
"engines": {
|
|
102
|
-
"node": ">=18"
|
|
103
|
-
},
|
|
104
|
-
"scripts": {
|
|
105
|
-
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
|
|
106
|
-
"precommit": "lint-staged",
|
|
107
|
-
"prebuild": "rimraf dist",
|
|
108
|
-
"build": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts",
|
|
109
|
-
"start": "rollup -c rollup.config.ts -w"
|
|
110
|
-
},
|
|
111
|
-
"lint-staged": {
|
|
112
|
-
"{src,test}/**/*.ts": [
|
|
113
|
-
"prettier --write",
|
|
114
|
-
"tslint --fix"
|
|
115
|
-
]
|
|
116
|
-
},
|
|
117
|
-
"jest": {
|
|
118
|
-
"transform": {
|
|
119
|
-
".(ts|tsx)": "ts-jest"
|
|
120
|
-
},
|
|
121
|
-
"testEnvironment": "node",
|
|
122
|
-
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
|
|
123
|
-
"moduleFileExtensions": [
|
|
124
|
-
"ts",
|
|
125
|
-
"tsx",
|
|
126
|
-
"js"
|
|
127
|
-
],
|
|
128
|
-
"coveragePathIgnorePatterns": [
|
|
129
|
-
"/node_modules/",
|
|
130
|
-
"/test/"
|
|
131
|
-
],
|
|
132
|
-
"collectCoverageFrom": [
|
|
133
|
-
"src/**/*.{js,ts}"
|
|
134
|
-
]
|
|
135
|
-
},
|
|
136
|
-
"dependencies": {
|
|
137
|
-
"@airgap/beacon-sdk": "4.0.12",
|
|
138
|
-
"@taquito/taquito": "^8.0.4-beta.0",
|
|
139
|
-
"@taquito/utils": "^8.0.4-beta.0"
|
|
140
|
-
},
|
|
141
|
-
"devDependencies": {
|
|
142
|
-
"@types/chrome": "0.0.126",
|
|
143
|
-
"@types/jest": "^26.0.16",
|
|
144
|
-
"@types/libsodium-wrappers": "^0.7.8",
|
|
145
|
-
"@types/node": "^18",
|
|
146
|
-
"@types/ws": "^7.4.0",
|
|
147
|
-
"colors": "^1.4.0",
|
|
148
|
-
"coveralls": "^3.1.0",
|
|
149
|
-
"cross-env": "^7.0.2",
|
|
150
|
-
"jest": "^26.6.3",
|
|
151
|
-
"jest-config": "^26.6.3",
|
|
152
|
-
"lint-staged": "^10.4.0",
|
|
153
|
-
"lodash.camelcase": "^4.3.0",
|
|
154
|
-
"prettier": "^2.1.2",
|
|
155
|
-
"prompt": "^1.0.0",
|
|
156
|
-
"replace-in-file": "^6.1.0",
|
|
157
|
-
"rimraf": "^3.0.2",
|
|
158
|
-
"rollup": "^2.28.2",
|
|
159
|
-
"rollup-plugin-json": "^4.0.0",
|
|
160
|
-
"rollup-plugin-typescript2": "^0.27.3",
|
|
161
|
-
"shelljs": "^0.8.4",
|
|
162
|
-
"ts-jest": "^26.4.4",
|
|
163
|
-
"ts-node": "^9.1.1",
|
|
164
|
-
"tslint": "^6.1.3",
|
|
165
|
-
"tslint-config-prettier": "^1.18.0",
|
|
166
|
-
"tslint-config-standard": "^9.0.0",
|
|
167
|
-
"typescript": "~4.1.5"
|
|
168
|
-
},
|
|
169
|
-
"gitHead": "551e35aeff7d6dcde1c72284238c0ed3c3aae77e"
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
],
|
|
174
|
-
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJgN/T9CRAD9Qy5GYHsngAAh7sQAJX0r3AUmD/9aOlRG0QHN9J8\nmR+y7rc1xPXHSk2JREYv+qeRY6yM8hoThbYf3UXtywqSK8qGtiu2rjxgMtOJBurq\ng+RNFs6tG1L3q6rmM3A0g030JfQWKO9QvY7E8144kfXJM1CnlLGp8W6T8VIC5Mr5\nNH24DrLaOChD31vHt/tWUVn8ljQNFEzQmf2s50S9c2yud9QnUIyVz1n5QhzwHUpU\nP9XlSpbOw4MLrbrblWHGn1NvrnG1SOevwHqCH6t620uwZcpR1x5qdldVioIAobDh\nKnl4D22gANal7x/of8DQ1kDMXf/r4houuR5HPoSyRtlnbQdOtm4A8xOi8pk2D8VQ\n66NBkHYcDhckQnTzpwpCWlC3q5tR/JZoUY5T9JJuizPdEjwQyBGOjnjN2r02aIFg\nZmxH51vz1QWRDYO7Q02mO2u+bT0T6ojWtDkHGbmFcm6U0ONkXntlRsTzAL8LEjC8\nTzKWDsYBXHi6J30dWBtwfD3PKyq7sEri3+29ktOkbhyg2UeBfCyNNjQq+NTEYeFS\nzGRrbEslFO8EWhkX9VZIwRyJa7VUPRzADNC8W6Iqq6Fu3APaqibDqnm4B5jGHZpK\nHXiYgUuZkHI5pgfjempYULh9v4FHDdcumrCHPxihTxhYGfSZxvG3rc8/St/1bAIl\nFEUWaENtLRCqLLqpHrw7\n=nmc6\n-----END PGP SIGNATURE-----\n"
|
|
175
|
-
}
|