@notabene/javascript-sdk 2.8.0-next.1 → 2.8.0-next.2
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/notabene.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.ts +2 -1
package/dist/notabene.d.ts
CHANGED
|
@@ -1311,7 +1311,7 @@ export declare interface ScreenshotProof extends OwnershipProof {
|
|
|
1311
1311
|
* @public
|
|
1312
1312
|
*/
|
|
1313
1313
|
export declare interface SignatureProof extends OwnershipProof {
|
|
1314
|
-
type: ProofTypes.EIP191 | ProofTypes.EIP712 | ProofTypes.EIP1271 | ProofTypes.BIP137 | ProofTypes.BIP322 | ProofTypes.BIP137_XPUB | ProofTypes.ED25519 | ProofTypes.TIP191 | ProofTypes.SIWX | ProofTypes.SIWE | ProofTypes.CIP8;
|
|
1314
|
+
type: ProofTypes.EIP191 | ProofTypes.EIP712 | ProofTypes.EIP1271 | ProofTypes.BIP137 | ProofTypes.BIP322 | ProofTypes.BIP137_XPUB | ProofTypes.ED25519 | ProofTypes.TIP191 | ProofTypes.SIWX | ProofTypes.SIWE | ProofTypes.CIP8 | ProofTypes.XRP_ED25519;
|
|
1315
1315
|
proof: string;
|
|
1316
1316
|
attestation: string;
|
|
1317
1317
|
wallet_provider: string;
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"author": "Notabene <developers@notabene.id>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"packageManager": "yarn@4.5.1",
|
|
13
|
-
"version": "2.8.0-next.
|
|
13
|
+
"version": "2.8.0-next.2",
|
|
14
14
|
"source": "src/notabene.ts",
|
|
15
15
|
"main": "dist/notabene.js",
|
|
16
16
|
"types": "dist/notabene.d.ts",
|
package/src/types.ts
CHANGED
|
@@ -1113,7 +1113,8 @@ export interface SignatureProof extends OwnershipProof {
|
|
|
1113
1113
|
| ProofTypes.TIP191
|
|
1114
1114
|
| ProofTypes.SIWX
|
|
1115
1115
|
| ProofTypes.SIWE
|
|
1116
|
-
| ProofTypes.CIP8
|
|
1116
|
+
| ProofTypes.CIP8
|
|
1117
|
+
| ProofTypes.XRP_ED25519;
|
|
1117
1118
|
|
|
1118
1119
|
proof: string;
|
|
1119
1120
|
attestation: string;
|