@0xsequence/guard 1.9.35 → 1.9.36
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.
|
@@ -707,6 +707,7 @@ function toUTCString(date) {
|
|
|
707
707
|
}
|
|
708
708
|
|
|
709
709
|
exports.AuthMethod = AuthMethod;
|
|
710
|
+
exports.Guard = Guard;
|
|
710
711
|
exports.GuardSigner = GuardSigner;
|
|
711
712
|
exports.getAuthUpdateProofTypedData = getAuthUpdateProofTypedData;
|
|
712
713
|
exports.getOwnershipProofTypedData = getOwnershipProofTypedData;
|
|
@@ -707,6 +707,7 @@ function toUTCString(date) {
|
|
|
707
707
|
}
|
|
708
708
|
|
|
709
709
|
exports.AuthMethod = AuthMethod;
|
|
710
|
+
exports.Guard = Guard;
|
|
710
711
|
exports.GuardSigner = GuardSigner;
|
|
711
712
|
exports.getAuthUpdateProofTypedData = getAuthUpdateProofTypedData;
|
|
712
713
|
exports.getOwnershipProofTypedData = getOwnershipProofTypedData;
|
|
@@ -702,4 +702,4 @@ function toUTCString(date) {
|
|
|
702
702
|
return date.toUTCString().replace('GMT', 'UTC');
|
|
703
703
|
}
|
|
704
704
|
|
|
705
|
-
export { AuthMethod, GuardSigner, getAuthUpdateProofTypedData, getOwnershipProofTypedData, isSignedOwnershipProof, signOwnershipProof };
|
|
705
|
+
export { AuthMethod, Guard, GuardSigner, getAuthUpdateProofTypedData, getOwnershipProofTypedData, isSignedOwnershipProof, signOwnershipProof };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0xsequence/guard",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.36",
|
|
4
4
|
"description": "guard sub-package for Sequence",
|
|
5
5
|
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/guard",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"ethers": "^5.7.2",
|
|
13
|
-
"@0xsequence/account": "1.9.
|
|
14
|
-
"@0xsequence/core": "1.9.
|
|
15
|
-
"@0xsequence/signhub": "1.9.
|
|
16
|
-
"@0xsequence/utils": "1.9.
|
|
13
|
+
"@0xsequence/account": "1.9.36",
|
|
14
|
+
"@0xsequence/core": "1.9.36",
|
|
15
|
+
"@0xsequence/signhub": "1.9.36",
|
|
16
|
+
"@0xsequence/utils": "1.9.36"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"src",
|
package/src/index.ts
CHANGED