@massalabs/wallet-provider 0.0.2-dev.20230710162513 → 0.0.2-dev.20230710163418
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/bundle.js +7 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -0
- package/package.json +1 -1
package/bundle.js
CHANGED
|
@@ -346,6 +346,12 @@ exports.connector = new Connector();
|
|
|
346
346
|
"use strict";
|
|
347
347
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
348
348
|
exports.MassaStationAccount = exports.Provider = exports.EAccountImportResponse = exports.EAccountDeletionResponse = exports.Account = exports.providers = exports.AvailableCommands = void 0;
|
|
349
|
+
/** Polyfills */
|
|
350
|
+
const buffer_1 = require("buffer");
|
|
351
|
+
// Check if we are on browser
|
|
352
|
+
if (typeof window !== 'undefined') {
|
|
353
|
+
window.Buffer = buffer_1.Buffer;
|
|
354
|
+
}
|
|
349
355
|
const Connector_1 = require("./connector/Connector");
|
|
350
356
|
const Provider_1 = require("./provider/Provider");
|
|
351
357
|
const MassaStationProvider_1 = require("./massaStation/MassaStationProvider");
|
|
@@ -387,7 +393,7 @@ Object.defineProperty(exports, "Provider", { enumerable: true, get: function ()
|
|
|
387
393
|
var MassaStationAccount_1 = require("./massaStation/MassaStationAccount");
|
|
388
394
|
Object.defineProperty(exports, "MassaStationAccount", { enumerable: true, get: function () { return MassaStationAccount_1.MassaStationAccount; } });
|
|
389
395
|
|
|
390
|
-
},{"./account":2,"./connector/Connector":3,"./massaStation/MassaStationAccount":5,"./massaStation/MassaStationProvider":7,"./provider":12,"./provider/Provider":11}],5:[function(require,module,exports){
|
|
396
|
+
},{"./account":2,"./connector/Connector":3,"./massaStation/MassaStationAccount":5,"./massaStation/MassaStationProvider":7,"./provider":12,"./provider/Provider":11,"buffer":46}],5:[function(require,module,exports){
|
|
391
397
|
"use strict";
|
|
392
398
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
393
399
|
exports.MassaStationAccount = void 0;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
/** Polyfills */
|
|
3
|
+
import { Buffer } from 'buffer';
|
|
4
|
+
declare global {
|
|
5
|
+
interface Window {
|
|
6
|
+
Buffer: typeof Buffer;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
1
9
|
import { IProvider } from './provider/IProvider';
|
|
2
10
|
export declare enum AvailableCommands {
|
|
3
11
|
ProviderListAccounts = "LIST_ACCOUNTS",
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,gBAAgB;AAChB,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAEhC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,MAAM,EAAE,OAAO,MAAM,CAAC;KACvB;CACF;AAQD,OAAO,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAOjD,oBAAY,iBAAiB;IAC3B,oBAAoB,kBAAkB;IACtC,qBAAqB,mBAAmB;IACxC,qBAAqB,mBAAmB;IACxC,oBAAoB,mBAAmB;IACvC,cAAc,oBAAoB;IAClC,WAAW,iBAAiB;IAC5B,0BAA0B,yBAAyB;IACnD,gBAAgB,uBAAuB;IACvC,eAAe,sBAAsB;IACrC,sBAAsB,6BAA6B;IACnD,aAAa,oBAAoB;CAClC;AAED,MAAM,WAAW,mBAAmB;IAClC,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,wBAAgB,SAAS,IAAI,SAAS,EAAE,CAYvC;AAED,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAEhE,OAAO,EACL,eAAe,EACf,sBAAsB,EACtB,uBAAuB,EACvB,mBAAmB,EACnB,oBAAoB,EACpB,QAAQ,EACR,OAAO,EACP,oBAAoB,EACpB,8BAA8B,EAC9B,qBAAqB,GACtB,MAAM,WAAW,CAAC;AAEnB,OAAO,EACL,wBAAwB,EACxB,sBAAsB,EACtB,uBAAuB,EACvB,wBAAwB,EACxB,qBAAqB,EACrB,sBAAsB,EACtB,SAAS,EACT,QAAQ,GACT,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAE1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.MassaStationAccount = exports.Provider = exports.EAccountImportResponse = exports.EAccountDeletionResponse = exports.Account = exports.providers = exports.AvailableCommands = void 0;
|
|
4
|
+
/** Polyfills */
|
|
5
|
+
const buffer_1 = require("buffer");
|
|
6
|
+
// Check if we are on browser
|
|
7
|
+
if (typeof window !== 'undefined') {
|
|
8
|
+
window.Buffer = buffer_1.Buffer;
|
|
9
|
+
}
|
|
4
10
|
const Connector_1 = require("./connector/Connector");
|
|
5
11
|
const Provider_1 = require("./provider/Provider");
|
|
6
12
|
const MassaStationProvider_1 = require("./massaStation/MassaStationProvider");
|