File tree Expand file tree Collapse file tree 2 files changed +6
-24
lines changed
pages/debug/beta/payments Expand file tree Collapse file tree 2 files changed +6
-24
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,7 @@ interface ProtocolMetadata {
11
11
export interface TransferWithAuthorizationMetadata extends ProtocolMetadata {
12
12
signatureValidAfter : string
13
13
signatureValidBefore : string
14
- recoverIdV : string
15
- pointR : string
16
- proofS : string
14
+ rawSignature : string
17
15
}
18
16
19
17
export interface CreateCryptoPaymentPayload {
Original file line number Diff line number Diff line change 61
61
/>
62
62
63
63
<v-text-field
64
- v-model =" formData.recoverIdV"
65
- hint =" ECDSA recoverIdV"
66
- label =" ECDSA recoverIdV"
67
- />
68
-
69
- <v-text-field
70
- v-model =" formData.pointR"
71
- hint =" ECDSA pointR"
72
- label =" ECDSA pointR"
73
- />
74
-
75
- <v-text-field
76
- v-model =" formData.proofS"
77
- hint =" ECDSA proofS"
78
- label =" ECDSA proofS"
64
+ v-model =" formData.rawSignature"
65
+ hint =" ECDSA rawSignature"
66
+ label =" ECDSA rawSignature"
79
67
/>
80
68
81
69
<v-btn
@@ -140,9 +128,7 @@ export default class CreatePaymentClass extends Vue {
140
128
validAfter: ' 0' ,
141
129
validBefore: ' ' ,
142
130
metaTxNonce: ' ' ,
143
- recoverIdV: ' ' ,
144
- pointR: ' ' ,
145
- proofS: ' ' ,
131
+ rawSignature: ' ' ,
146
132
}
147
133
148
134
sourceType = [' blockchain' ]
@@ -178,9 +164,7 @@ export default class CreatePaymentClass extends Vue {
178
164
metaTxNonce: this .formData .metaTxNonce ,
179
165
signatureValidAfter: this .formData .validAfter ,
180
166
signatureValidBefore: this .formData .validBefore ,
181
- recoverIdV: this .formData .recoverIdV ,
182
- pointR: this .formData .pointR ,
183
- proofS: this .formData .proofS ,
167
+ rawSignature: this .formData .rawSignature ,
184
168
}
185
169
const payload: CreateCryptoPaymentPayload = {
186
170
idempotencyKey: uuidv4 (),
You can’t perform that action at this time.
0 commit comments