File tree Expand file tree Collapse file tree 6 files changed +578
-225
lines changed Expand file tree Collapse file tree 6 files changed +578
-225
lines changed Original file line number Diff line number Diff line change 5
5
* @example
6
6
* const recordsResponseFilter: RecordsResponseFilter = {
7
7
* block_height: true,
8
+ * block_timestamp: true,
8
9
* checksum: true,
9
10
* commitment: true,
10
11
* record_ciphertext: true,
14
15
* owner: true,
15
16
* program_name: true,
16
17
* record_name: true,
18
+ * sender_ciphertext: true,
17
19
* transaction_id: true,
18
20
* transition_id: true,
19
21
* transaction_index: true,
20
22
* transition_index: true,
21
23
* }
22
24
*/
23
25
export type RecordsResponseFilter = {
24
- blockHeight ?: boolean ;
26
+ block_height ?: boolean ;
27
+ block_timestamp ?: boolean ;
25
28
checksum ?: boolean ;
26
29
commitment ?: boolean ;
27
30
record_ciphertext ?: boolean ;
31
+ sender_ciphertext ?: boolean ;
28
32
function_name ?: boolean ;
29
33
nonce ?: boolean ;
30
34
output_index ?: boolean ;
Original file line number Diff line number Diff line change 8
8
* status: "pending",
9
9
* }
10
10
*/
11
- interface RegistrationResponse {
11
+ export interface RegistrationResponse {
12
12
uuid : string ,
13
13
job_id ?: string ,
14
14
status ?: string
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { RecordSearchParams } from "./models/record-provider/recordSearchParams"
8
8
import { RecordsFilter } from "./models/record-scanner/recordsFilter" ;
9
9
import { RecordsResponseFilter } from "./models/record-scanner/recordsResponseFilter" ;
10
10
import { RegistrationRequest } from "./models/record-scanner/registrationRequest" ;
11
+ import { RegistrationResponse } from "./models/record-scanner/registrationResponse" ;
11
12
12
13
type RecordScannerOptions = {
13
14
url : string ;
Original file line number Diff line number Diff line change @@ -206,7 +206,10 @@ const OWNED_CREDITS_RECORDS = [
206
206
}
207
207
]
208
208
209
- const CHECK_SNS_RESPONSE = { '3673836024253895240205884165890003872225300531298514519146928213266356324646field' : true }
209
+ const CHECK_SNS_RESPONSE = {
210
+ '1621694306596217216370326054181178914897851479837084979111511176605457690717field' : true ,
211
+ '5684626152578699086223993752521225507576791345254401210560771329591763880242field' : false ,
212
+ }
210
213
211
214
const CHECK_TAGS_RESPONSE = {
212
215
'2965517500209150226508265073635793457193572667031485750956287906078711930968field' : false ,
You can’t perform that action at this time.
0 commit comments