@taquito/beacon-wallet 24.2.0-beta.0 → 24.2.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/beacon-types.es6.js +2 -0
- package/dist/beacon-types.es6.js.map +1 -0
- package/dist/beacon-types.umd.js +25 -0
- package/dist/beacon-types.umd.js.map +1 -0
- package/dist/lib/beacon-types.js +15 -0
- package/dist/lib/taquito-beacon-wallet.js +7 -1
- package/dist/lib/version.js +2 -2
- package/dist/taquito-beacon-wallet.es6.js +3 -2
- package/dist/taquito-beacon-wallet.es6.js.map +1 -1
- package/dist/taquito-beacon-wallet.umd.js +6 -2
- package/dist/taquito-beacon-wallet.umd.js.map +1 -1
- package/dist/types/beacon-types.d.ts +2 -0
- package/dist/types/taquito-beacon-wallet.d.ts +2 -0
- package/package.json +18 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"beacon-types.es6.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
(function (global, factory) {
|
|
2
|
+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@ecadlabs/beacon-types')) :
|
|
3
|
+
typeof define === 'function' && define.amd ? define(['exports', '@ecadlabs/beacon-types'], factory) :
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.taquitoBeaconTypes = {}, global.beaconTypes));
|
|
5
|
+
})(this, (function (exports, beaconTypes) { 'use strict';
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "NetworkType", {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return beaconTypes.NetworkType; }
|
|
10
|
+
});
|
|
11
|
+
Object.defineProperty(exports, "PermissionScope", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return beaconTypes.PermissionScope; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "Regions", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return beaconTypes.Regions; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "SigningType", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return beaconTypes.SigningType; }
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
}));
|
|
25
|
+
//# sourceMappingURL=beacon-types.umd.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"beacon-types.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Regions = exports.SigningType = exports.PermissionScope = exports.NetworkType = void 0;
|
|
4
|
+
// Side-effect-free re-exports from @ecadlabs/beacon-types.
|
|
5
|
+
// Importing this module does NOT pull in the Beacon DAppClient or trigger
|
|
6
|
+
// any beacon-dapp initialization. Safe for type-only or enum-only usage.
|
|
7
|
+
//
|
|
8
|
+
// For BeaconEvent and DAppClientOptions, import from '@taquito/beacon-wallet'
|
|
9
|
+
// (the main entry point) instead, since those live in @ecadlabs/beacon-dapp
|
|
10
|
+
// which has unavoidable side effects.
|
|
11
|
+
var beacon_types_1 = require("@ecadlabs/beacon-types");
|
|
12
|
+
Object.defineProperty(exports, "NetworkType", { enumerable: true, get: function () { return beacon_types_1.NetworkType; } });
|
|
13
|
+
Object.defineProperty(exports, "PermissionScope", { enumerable: true, get: function () { return beacon_types_1.PermissionScope; } });
|
|
14
|
+
Object.defineProperty(exports, "SigningType", { enumerable: true, get: function () { return beacon_types_1.SigningType; } });
|
|
15
|
+
Object.defineProperty(exports, "Regions", { enumerable: true, get: function () { return beacon_types_1.Regions; } });
|
|
@@ -13,7 +13,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
13
13
|
});
|
|
14
14
|
};
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.BeaconWallet = exports.MissingRequiredScopes = exports.BeaconWalletNotInitialized = exports.VERSION = void 0;
|
|
16
|
+
exports.BeaconWallet = exports.BeaconEvent = exports.MissingRequiredScopes = exports.BeaconWalletNotInitialized = exports.VERSION = void 0;
|
|
17
17
|
const beacon_dapp_1 = require("@ecadlabs/beacon-dapp");
|
|
18
18
|
const errors_1 = require("./errors");
|
|
19
19
|
const typedarray_to_buffer_1 = require("typedarray-to-buffer");
|
|
@@ -25,6 +25,12 @@ Object.defineProperty(exports, "VERSION", { enumerable: true, get: function () {
|
|
|
25
25
|
var errors_2 = require("./errors");
|
|
26
26
|
Object.defineProperty(exports, "BeaconWalletNotInitialized", { enumerable: true, get: function () { return errors_2.BeaconWalletNotInitialized; } });
|
|
27
27
|
Object.defineProperty(exports, "MissingRequiredScopes", { enumerable: true, get: function () { return errors_2.MissingRequiredScopes; } });
|
|
28
|
+
// Re-exported from @ecadlabs/beacon-dapp for consumers who need these without
|
|
29
|
+
// a direct beacon-dapp dependency. These types live only in beacon-dapp (not in
|
|
30
|
+
// beacon-types), so they come with beacon-dapp's side effects. For side-effect-free
|
|
31
|
+
// beacon types (NetworkType, SigningType, etc.), use '@taquito/beacon-wallet/types'.
|
|
32
|
+
var beacon_dapp_2 = require("@ecadlabs/beacon-dapp");
|
|
33
|
+
Object.defineProperty(exports, "BeaconEvent", { enumerable: true, get: function () { return beacon_dapp_2.BeaconEvent; } });
|
|
28
34
|
/**
|
|
29
35
|
* Default matrix relay nodes curated by Taquito.
|
|
30
36
|
*
|
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.2.0
|
|
6
|
+
"commitHash": "105a7b15cfb862a0732c204e0e9741098d697775",
|
|
7
|
+
"version": "24.2.0"
|
|
8
8
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Regions, getDAppClientInstance, SigningType, PermissionScope } from '@ecadlabs/beacon-dapp';
|
|
2
|
+
export { BeaconEvent } from '@ecadlabs/beacon-dapp';
|
|
2
3
|
import { PermissionDeniedError, UnsupportedActionError } from '@taquito/core';
|
|
3
4
|
import toBuffer from 'typedarray-to-buffer';
|
|
4
5
|
import { createTransferOperation, createTransferTicketOperation, createIncreasePaidStorageOperation, createOriginationOperation, createSetDelegateOperation, createRegisterGlobalConstantOperation } from '@taquito/taquito';
|
|
@@ -63,8 +64,8 @@ class MissingRequiredScopes extends PermissionDeniedError {
|
|
|
63
64
|
|
|
64
65
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
65
66
|
const VERSION = {
|
|
66
|
-
"commitHash": "
|
|
67
|
-
"version": "24.2.0
|
|
67
|
+
"commitHash": "105a7b15cfb862a0732c204e0e9741098d697775",
|
|
68
|
+
"version": "24.2.0"
|
|
68
69
|
};
|
|
69
70
|
|
|
70
71
|
/**
|
|
@@ -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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
|
|
64
64
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT!
|
|
65
65
|
const VERSION = {
|
|
66
|
-
"commitHash": "
|
|
67
|
-
"version": "24.2.0
|
|
66
|
+
"commitHash": "105a7b15cfb862a0732c204e0e9741098d697775",
|
|
67
|
+
"version": "24.2.0"
|
|
68
68
|
};
|
|
69
69
|
|
|
70
70
|
/**
|
|
@@ -387,6 +387,10 @@
|
|
|
387
387
|
}
|
|
388
388
|
}
|
|
389
389
|
|
|
390
|
+
Object.defineProperty(exports, "BeaconEvent", {
|
|
391
|
+
enumerable: true,
|
|
392
|
+
get: function () { return beaconDapp.BeaconEvent; }
|
|
393
|
+
});
|
|
390
394
|
exports.BeaconWallet = BeaconWallet;
|
|
391
395
|
exports.BeaconWalletNotInitialized = BeaconWalletNotInitialized;
|
|
392
396
|
exports.MissingRequiredScopes = MissingRequiredScopes;
|
|
@@ -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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -6,6 +6,8 @@ import { DAppClient, DAppClientOptions, RequestPermissionInput } from '@ecadlabs
|
|
|
6
6
|
import { WalletDelegateParams, WalletIncreasePaidStorageParams, WalletOriginateParams, WalletProvider, WalletTransferParams, WalletStakeParams, WalletUnstakeParams, WalletFinalizeUnstakeParams, WalletTransferTicketParams, WalletRegisterGlobalConstantParams, ParamsWithOptionalFees } from '@taquito/taquito';
|
|
7
7
|
export { VERSION } from './version';
|
|
8
8
|
export { BeaconWalletNotInitialized, MissingRequiredScopes } from './errors';
|
|
9
|
+
export { BeaconEvent } from '@ecadlabs/beacon-dapp';
|
|
10
|
+
export type { DAppClientOptions } from '@ecadlabs/beacon-dapp';
|
|
9
11
|
type RPCOperationWithLimits = {
|
|
10
12
|
fee?: number | string;
|
|
11
13
|
gas_limit?: number | string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/beacon-wallet",
|
|
3
|
-
"version": "24.2.0
|
|
3
|
+
"version": "24.2.0",
|
|
4
4
|
"description": "Beacon wallet provider",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -10,6 +10,19 @@
|
|
|
10
10
|
"main": "dist/taquito-beacon-wallet.umd.js",
|
|
11
11
|
"module": "dist/taquito-beacon-wallet.es6.js",
|
|
12
12
|
"typings": "dist/types/taquito-beacon-wallet.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/taquito-beacon-wallet.es6.js",
|
|
16
|
+
"require": "./dist/taquito-beacon-wallet.umd.js",
|
|
17
|
+
"types": "./dist/types/taquito-beacon-wallet.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./types": {
|
|
20
|
+
"import": "./dist/beacon-types.es6.js",
|
|
21
|
+
"require": "./dist/beacon-types.umd.js",
|
|
22
|
+
"types": "./dist/types/beacon-types.d.ts"
|
|
23
|
+
},
|
|
24
|
+
"./package.json": "./package.json"
|
|
25
|
+
},
|
|
13
26
|
"files": [
|
|
14
27
|
"signature.json",
|
|
15
28
|
"dist"
|
|
@@ -101,8 +114,9 @@
|
|
|
101
114
|
},
|
|
102
115
|
"dependencies": {
|
|
103
116
|
"@ecadlabs/beacon-dapp": "^4.8.1-ecad",
|
|
104
|
-
"@
|
|
105
|
-
"@taquito/
|
|
117
|
+
"@ecadlabs/beacon-types": "^4.8.1-ecad",
|
|
118
|
+
"@taquito/core": "^24.2.0",
|
|
119
|
+
"@taquito/taquito": "^24.2.0",
|
|
106
120
|
"crypto-browserify": "^3.12.1",
|
|
107
121
|
"util": "^0.12.5"
|
|
108
122
|
},
|
|
@@ -141,5 +155,5 @@
|
|
|
141
155
|
"webpack": "^5.94.0",
|
|
142
156
|
"webpack-cli": "^5.1.4"
|
|
143
157
|
},
|
|
144
|
-
"gitHead": "
|
|
158
|
+
"gitHead": "689f242c1780c9fe98c050819c55986912db3934"
|
|
145
159
|
}
|