@phantom/indexed-db-stamper 0.1.5 → 1.0.0-beta.1

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/index.js CHANGED
@@ -44,7 +44,7 @@ var IndexedDbStamper = class {
44
44
  this.pendingKeyPairRecord = null;
45
45
  this.algorithm = import_sdk_types.Algorithm.ed25519;
46
46
  // Use Ed25519 for maximum security and performance
47
- // The type of stamper, can be changed at any time
47
+ // The type of stamper, can be changed at any time
48
48
  this.type = "PKI";
49
49
  if (typeof window === "undefined" || !window.indexedDB) {
50
50
  throw new Error("IndexedDbStamper requires a browser environment with IndexedDB support");
package/dist/index.mjs CHANGED
@@ -10,7 +10,7 @@ var IndexedDbStamper = class {
10
10
  this.pendingKeyPairRecord = null;
11
11
  this.algorithm = Algorithm.ed25519;
12
12
  // Use Ed25519 for maximum security and performance
13
- // The type of stamper, can be changed at any time
13
+ // The type of stamper, can be changed at any time
14
14
  this.type = "PKI";
15
15
  if (typeof window === "undefined" || !window.indexedDB) {
16
16
  throw new Error("IndexedDbStamper requires a browser environment with IndexedDB support");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@phantom/indexed-db-stamper",
3
- "version": "0.1.5",
3
+ "version": "1.0.0-beta.1",
4
4
  "description": "IndexedDB stamper for Phantom Wallet SDK with non-extractable key storage",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -39,10 +39,10 @@
39
39
  "typescript": "^5.0.4"
40
40
  },
41
41
  "dependencies": {
42
- "@phantom/base64url": "^0.1.0",
43
- "@phantom/crypto": "^0.1.2",
44
- "@phantom/embedded-provider-core": "^0.1.9",
45
- "@phantom/sdk-types": "^0.1.5",
42
+ "@phantom/base64url": "^1.0.0-beta.1",
43
+ "@phantom/crypto": "^1.0.0-beta.1",
44
+ "@phantom/embedded-provider-core": "^1.0.0-beta.1",
45
+ "@phantom/sdk-types": "^1.0.0-beta.1",
46
46
  "bs58": "^6.0.0",
47
47
  "buffer": "^6.0.3"
48
48
  },