@velumx/sdk 1.3.0 → 1.4.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/IntentBuilder.d.ts +1 -1
- package/dist/IntentBuilder.js +1 -1
- package/package.json +1 -1
- package/src/IntentBuilder.ts +1 -1
package/dist/IntentBuilder.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare class IntentBuilder {
|
|
|
10
10
|
private getDomain;
|
|
11
11
|
/**
|
|
12
12
|
* Formats the intent into a Clarity Tuple for signing
|
|
13
|
-
* Structure matches the Smart Wallet
|
|
13
|
+
* Structure matches the Smart Wallet v7 expectation
|
|
14
14
|
*/
|
|
15
15
|
private formatIntentMessage;
|
|
16
16
|
/**
|
package/dist/IntentBuilder.js
CHANGED
|
@@ -20,7 +20,7 @@ class IntentBuilder {
|
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
22
|
* Formats the intent into a Clarity Tuple for signing
|
|
23
|
-
* Structure matches the Smart Wallet
|
|
23
|
+
* Structure matches the Smart Wallet v7 expectation
|
|
24
24
|
*/
|
|
25
25
|
formatIntentMessage(intent) {
|
|
26
26
|
return (0, transactions_1.tupleCV)({
|
package/package.json
CHANGED
package/src/IntentBuilder.ts
CHANGED
|
@@ -33,7 +33,7 @@ export class IntentBuilder {
|
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* Formats the intent into a Clarity Tuple for signing
|
|
36
|
-
* Structure matches the Smart Wallet
|
|
36
|
+
* Structure matches the Smart Wallet v7 expectation
|
|
37
37
|
*/
|
|
38
38
|
private formatIntentMessage(intent: WalletIntent) {
|
|
39
39
|
return tupleCV({
|