-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdojo.pyx
1211 lines (1046 loc) · 33.6 KB
/
dojo.pyx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from libc.stdint cimport int8_t, int16_t, int32_t, int64_t, intptr_t
from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t, uintptr_t
cdef extern from *:
ctypedef bint bool
ctypedef struct va_list
cdef extern from *:
cdef enum BlockTag:
Latest,
Pending,
cdef enum ComparisonOperator:
Eq,
Neq,
Gt,
Gte,
Lt,
Lte,
In,
NotIn,
cdef enum LogicalOperator:
And,
Or,
cdef enum OrderDirection:
Asc,
Desc,
cdef enum PatternMatching:
FixedLen # = 0,
VariableLen # = 1,
cdef struct Account:
pass
cdef struct ControllerAccount:
pass
cdef struct Provider:
pass
cdef struct Subscription:
pass
cdef struct ToriiClient:
pass
cdef struct Error:
char *message;
cdef enum ResultToriiClient_Tag:
OkToriiClient,
ErrToriiClient,
cdef struct ResultToriiClient:
ResultToriiClient_Tag tag;
ToriiClient *ok;
Error err;
cdef struct FieldElement:
uint8_t data[32];
cdef enum ResultControllerAccount_Tag:
OkControllerAccount,
ErrControllerAccount,
cdef struct ResultControllerAccount:
ResultControllerAccount_Tag tag;
ControllerAccount *ok;
Error err;
cdef enum Resultbool_Tag:
Okbool,
Errbool,
cdef struct Resultbool:
Resultbool_Tag tag;
bool ok;
Error err;
cdef enum ResultFieldElement_Tag:
OkFieldElement,
ErrFieldElement,
cdef struct ResultFieldElement:
ResultFieldElement_Tag tag;
FieldElement ok;
Error err;
cdef struct CArrayu8:
uint8_t *data;
uintptr_t data_len;
cdef enum ResultCArrayu8_Tag:
OkCArrayu8,
ErrCArrayu8,
cdef struct ResultCArrayu8:
ResultCArrayu8_Tag tag;
CArrayu8 ok;
Error err;
cdef struct CArrayController:
Controller *data;
uintptr_t data_len;
cdef enum ResultCArrayController_Tag:
OkCArrayController,
ErrCArrayController,
cdef struct ResultCArrayController:
ResultCArrayController_Tag tag;
CArrayController ok;
Error err;
cdef struct CArrayEntity:
Entity *data;
uintptr_t data_len;
cdef enum ResultCArrayEntity_Tag:
OkCArrayEntity,
ErrCArrayEntity,
cdef struct ResultCArrayEntity:
ResultCArrayEntity_Tag tag;
CArrayEntity ok;
Error err;
cdef struct CArrayCOptionFieldElement:
COptionFieldElement *data;
uintptr_t data_len;
cdef struct CArrayc_char:
const char **data;
uintptr_t data_len;
cdef struct KeysClause:
CArrayCOptionFieldElement keys;
PatternMatching pattern_matching;
CArrayc_char models;
cdef struct U256:
uint8_t data[32];
cdef enum Primitive_Tag:
I8,
I16,
I32,
I64,
I128,
U8,
U16,
U32,
U64,
U128,
U256_,
Bool,
Felt252,
ClassHash,
ContractAddress,
EthAddress,
cdef struct Primitive:
Primitive_Tag tag;
int8_t i8;
int16_t i16;
int32_t i32;
int64_t i64;
uint8_t i128[16];
uint8_t u8;
uint16_t u16;
uint32_t u32;
uint64_t u64;
uint8_t u128[16];
U256 u256;
bool bool_;
FieldElement felt252;
FieldElement class_hash;
FieldElement contract_address;
FieldElement eth_address;
cdef struct CArrayMemberValue:
MemberValue *data;
uintptr_t data_len;
cdef enum MemberValue_Tag:
PrimitiveValue,
String,
List,
cdef struct MemberValue:
MemberValue_Tag tag;
Primitive primitive_value;
const char *string;
CArrayMemberValue list;
cdef struct MemberClause:
const char *model;
const char *member;
ComparisonOperator operator_;
MemberValue value;
cdef struct CArrayClause:
Clause *data;
uintptr_t data_len;
cdef struct CompositeClause:
LogicalOperator operator_;
CArrayClause clauses;
cdef enum Clause_Tag:
Keys,
CMember,
Composite,
cdef struct Clause:
Clause_Tag tag;
KeysClause keys;
MemberClause c_member;
CompositeClause composite;
cdef enum COptionClause_Tag:
SomeClause,
NoneClause,
cdef struct COptionClause:
COptionClause_Tag tag;
Clause some;
cdef struct CArrayOrderBy:
OrderBy *data;
uintptr_t data_len;
cdef struct Query:
uint32_t limit;
uint32_t offset;
COptionClause clause;
bool dont_include_hashed_keys;
CArrayOrderBy order_by;
CArrayc_char entity_models;
uint64_t entity_updated_after;
cdef struct CArrayCHashItemFieldElementModelMetadata:
CHashItemFieldElementModelMetadata *data;
uintptr_t data_len;
cdef struct WorldMetadata:
FieldElement world_address;
CArrayCHashItemFieldElementModelMetadata models;
cdef enum ResultWorldMetadata_Tag:
OkWorldMetadata,
ErrWorldMetadata,
cdef struct ResultWorldMetadata:
ResultWorldMetadata_Tag tag;
WorldMetadata ok;
Error err;
cdef enum ResultSubscription_Tag:
OkSubscription,
ErrSubscription,
cdef struct ResultSubscription:
ResultSubscription_Tag tag;
Subscription *ok;
Error err;
cdef struct CArrayStruct:
Struct *data;
uintptr_t data_len;
cdef struct CArrayFieldElement:
FieldElement *data;
uintptr_t data_len;
cdef struct Event:
CArrayFieldElement keys;
CArrayFieldElement data;
FieldElement transaction_hash;
cdef struct CArrayToken:
Token *data;
uintptr_t data_len;
cdef enum COptionc_char_Tag:
Somec_char,
Nonec_char,
cdef struct COptionc_char:
COptionc_char_Tag tag;
const char *some;
cdef struct PageToken:
CArrayToken items;
COptionc_char next_cursor;
cdef enum ResultPageToken_Tag:
OkPageToken,
ErrPageToken,
cdef struct ResultPageToken:
ResultPageToken_Tag tag;
PageToken ok;
Error err;
cdef struct Token:
FieldElement contract_address;
U256 token_id;
const char *name;
const char *symbol;
uint8_t decimals;
const char *metadata;
cdef struct CArrayTokenBalance:
TokenBalance *data;
uintptr_t data_len;
cdef struct PageTokenBalance:
CArrayTokenBalance items;
COptionc_char next_cursor;
cdef enum ResultPageTokenBalance_Tag:
OkPageTokenBalance,
ErrPageTokenBalance,
cdef struct ResultPageTokenBalance:
ResultPageTokenBalance_Tag tag;
PageTokenBalance ok;
Error err;
cdef struct IndexerUpdate:
int64_t head;
int64_t tps;
int64_t last_block_timestamp;
FieldElement contract_address;
cdef struct TokenBalance:
U256 balance;
FieldElement account_address;
FieldElement contract_address;
U256 token_id;
cdef enum ResultCArrayFieldElement_Tag:
OkCArrayFieldElement,
ErrCArrayFieldElement,
cdef struct ResultCArrayFieldElement:
ResultCArrayFieldElement_Tag tag;
CArrayFieldElement ok;
Error err;
cdef enum Resultc_char_Tag:
Okc_char,
Errc_char,
cdef struct Resultc_char:
Resultc_char_Tag tag;
const char *ok;
Error err;
cdef struct Signature:
# The `r` value of a signature
FieldElement r;
# The `s` value of a signature
FieldElement s;
cdef enum ResultSignature_Tag:
OkSignature,
ErrSignature,
cdef struct ResultSignature:
ResultSignature_Tag tag;
Signature ok;
Error err;
cdef enum ResultProvider_Tag:
OkProvider,
ErrProvider,
cdef struct ResultProvider:
ResultProvider_Tag tag;
Provider *ok;
Error err;
cdef enum ResultAccount_Tag:
OkAccount,
ErrAccount,
cdef struct ResultAccount:
ResultAccount_Tag tag;
Account *ok;
Error err;
cdef struct Call:
FieldElement to;
const char *selector;
CArrayFieldElement calldata;
# Block hash, number or tag
cdef enum BlockId_Tag:
Hash,
Number,
BlockTag_,
cdef struct BlockId:
BlockId_Tag tag;
FieldElement hash;
uint64_t number;
BlockTag block_tag;
cdef struct Policy:
FieldElement target;
const char *method;
const char *description;
cdef struct Controller:
FieldElement address;
const char *username;
uint64_t deployed_at_timestamp;
cdef struct Entity:
FieldElement hashed_keys;
CArrayStruct models;
cdef enum COptionFieldElement_Tag:
SomeFieldElement,
NoneFieldElement,
cdef struct COptionFieldElement:
COptionFieldElement_Tag tag;
FieldElement some;
cdef struct OrderBy:
const char *model;
const char *member;
OrderDirection direction;
cdef struct CArrayMember:
Member *data;
uintptr_t data_len;
cdef struct Struct:
const char *name;
CArrayMember children;
cdef struct CArrayEnumOption:
EnumOption *data;
uintptr_t data_len;
cdef struct Enum:
const char *name;
uint8_t option;
CArrayEnumOption options;
cdef struct CArrayTy:
Ty *data;
uintptr_t data_len;
cdef enum Ty_Tag:
Primitive_,
Struct_,
Enum_,
Tuple_,
Array_,
ByteArray,
cdef struct Ty:
Ty_Tag tag;
Primitive primitive;
Struct struct_;
Enum enum_;
CArrayTy tuple;
CArrayTy array;
const char *byte_array;
cdef struct ModelMetadata:
Ty schema;
const char *namespace_;
const char *name;
uint32_t packed_size;
uint32_t unpacked_size;
FieldElement class_hash;
FieldElement contract_address;
CArrayFieldElement layout;
cdef struct CHashItemFieldElementModelMetadata:
FieldElement key;
ModelMetadata value;
cdef enum EntityKeysClause_Tag:
HashedKeys,
EntityKeys,
cdef struct EntityKeysClause:
EntityKeysClause_Tag tag;
CArrayFieldElement hashed_keys;
KeysClause entity_keys;
cdef struct Member:
const char *name;
Ty *ty;
bool key;
cdef struct EnumOption:
const char *name;
Ty *ty;
# Creates a new Torii client instance
#
# # Parameters
# * `torii_url` - URL of the Torii server
# * `libp2p_relay_url` - URL of the libp2p relay server
# * `world` - World address as a FieldElement
#
# # Returns
# Result containing pointer to new ToriiClient instance or error
ResultToriiClient client_new(const char *torii_url,
const char *libp2p_relay_url,
FieldElement world);
# Initiates a connection to establish a new session account
#
# This function:
# 1. Generates a new signing key pair
# 2. Starts a local HTTP server to receive the callback
# 3. Opens the keychain session URL in browser
# 4. Waits for callback with session details
# 5. Creates and stores the session
# 6. Calls the provided callback with the new session account
#
# # Safety
# This function is marked as unsafe because it:
# - Handles raw C pointers
# - Performs FFI operations
# - Creates system-level resources (HTTP server, keyring entries)
#
# # Parameters
# * `rpc_url` - Pointer to null-terminated string containing the RPC endpoint URL
# * `policies` - Pointer to array of Policy structs defining session permissions
# * `policies_len` - Length of the policies array
# * `account_callback` - Function pointer called with the new session account when ready
#
# # Example
# ```c
# void on_account(SessionAccount* account) {
# // Handle new session account
# }
#
# controller_connect(
# "https://rpc.example.com",
# policies,
# policies_length,
# on_account
# );
# ```
void controller_connect(const char *rpc_url,
const Policy *policies,
uintptr_t policies_len,
void (*account_callback)(ControllerAccount*));
# Retrieves a stored session account if one exists and is valid
#
# # Parameters
# * `policies` - Array of policies to match the session
# * `policies_len` - Length of policies array
# * `chain_id` - Chain ID to verify against
#
# # Returns
# Result containing pointer to SessionAccount or error if no valid account exists
ResultControllerAccount controller_account(const Policy *policies,
uintptr_t policies_len,
FieldElement chain_id);
# Clears sessions matching the specified policies and chain ID
#
# # Parameters
# * `policies` - Array of policies to match
# * `policies_len` - Length of policies array
# * `chain_id` - Chain ID to match
#
# # Returns
# Result containing success boolean or error
Resultbool controller_clear(const Policy *policies,
uintptr_t policies_len,
FieldElement chain_id);
# Gets the username of controller
#
# # Parameters
# * `account` - Pointer to Account
#
# # Returns
# CString containing the username
const char *controller_username(ControllerAccount *controller);
# Gets account address
#
# # Parameters
# * `account` - Pointer to Account
#
# # Returns
# FieldElement containing the account address
FieldElement controller_address(ControllerAccount *controller);
# Gets account chain ID
#
# # Parameters
# * `account` - Pointer to Account
#
# # Returns
# FieldElement containing the chain ID
FieldElement controller_chain_id(ControllerAccount *controller);
# Gets account nonce
#
# # Parameters
# * `account` - Pointer to Account
#
# # Returns
# Result containing FieldElement nonce or error
ResultFieldElement controller_nonce(ControllerAccount *controller);
# Executes raw transaction
#
# # Parameters
# * `account` - Pointer to Account
# * `calldata` - Array of Call structs
# * `calldata_len` - Length of calldata array
#
# # Returns
# Result containing transaction hash as FieldElement or error
ResultFieldElement controller_execute_raw(ControllerAccount *controller,
const Call *calldata,
uintptr_t calldata_len);
# Executes a transaction from outside (paymaster)
#
# # Parameters
# * `account` - Pointer to Account
# * `calldata` - Array of Call structs
# * `calldata_len` - Length of calldata array
#
# # Returns
# Result containing transaction hash as FieldElement or error
ResultFieldElement controller_execute_from_outside(ControllerAccount *controller,
const Call *calldata,
uintptr_t calldata_len);
# Sets a logger callback function for the client
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `logger` - Callback function that takes a C string parameter
void client_set_logger(ToriiClient *client, void (*logger)(const char*));
# Publishes a message to the network
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `message` - JSON string containing typed data message
# * `signature_felts` - Array of field elements containing signature
# * `signature_felts_len` - Length of signature array
#
# # Returns
# Result containing byte array or error
ResultCArrayu8 client_publish_message(ToriiClient *client,
const char *message,
const FieldElement *signature_felts,
uintptr_t signature_felts_len);
# Retrieves controllers for the given contract addresses
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `contract_addresses` - Array of contract addresses. If empty, all controllers will be
# returned.
#
# # Returns
# Result containing controllers or error
ResultCArrayController client_controllers(ToriiClient *client,
const FieldElement *contract_addresses,
uintptr_t contract_addresses_len);
# Queries entities matching given criteria
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `query` - Query parameters
#
# # Returns
# Result containing array of matching entities or error
ResultCArrayEntity client_entities(ToriiClient *client, Query query, bool historical);
# Retrieves event messages matching the given query
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `query` - Query parameters
# * `historical` - Whether to include historical messages
#
# # Returns
# Result containing array of matching event message entities or error
ResultCArrayEntity client_event_messages(ToriiClient *client, Query query, bool historical);
# Gets the world metadata for the client
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
#
# # Returns
# WorldMetadata structure containing world information
ResultWorldMetadata client_metadata(ToriiClient *client);
# Subscribes to entity state updates
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `clauses` - Array of entity key clauses to filter updates
# * `clauses_len` - Length of clauses array
# * `callback` - Function called when updates occur
#
# # Returns
# Result containing pointer to Subscription or error
ResultSubscription client_on_entity_state_update(ToriiClient *client,
const EntityKeysClause *clauses,
uintptr_t clauses_len,
void (*callback)(FieldElement, CArrayStruct));
# Updates an existing entity subscription with new clauses
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `subscription` - Pointer to existing Subscription
# * `clauses` - New array of entity key clauses
# * `clauses_len` - Length of new clauses array
#
# # Returns
# Result containing success boolean or error
Resultbool client_update_entity_subscription(ToriiClient *client,
Subscription *subscription,
const EntityKeysClause *clauses,
uintptr_t clauses_len);
# Subscribes to event message updates
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `clauses` - Array of entity key clauses to filter updates
# * `clauses_len` - Length of clauses array
# * `historical` - Whether to include historical messages
# * `callback` - Function called when updates occur
#
# # Returns
# Result containing pointer to Subscription or error
ResultSubscription client_on_event_message_update(ToriiClient *client,
const EntityKeysClause *clauses,
uintptr_t clauses_len,
void (*callback)(FieldElement, CArrayStruct));
# Updates an existing event message subscription
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `subscription` - Pointer to existing Subscription
# * `clauses` - New array of entity key clauses
# * `clauses_len` - Length of new clauses array
# * `historical` - Whether to include historical messages
#
# # Returns
# Result containing success boolean or error
Resultbool client_update_event_message_subscription(ToriiClient *client,
Subscription *subscription,
const EntityKeysClause *clauses,
uintptr_t clauses_len);
# Subscribes to Starknet events
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `clauses` - Array of entity key clauses to filter events
# * `clauses_len` - Length of clauses array
# * `callback` - Function called when events occur
#
# # Returns
# Result containing pointer to Subscription or error
ResultSubscription client_on_starknet_event(ToriiClient *client,
const EntityKeysClause *clauses,
uintptr_t clauses_len,
void (*callback)(Event));
# Retrieves token information for given contract addresses
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `contract_addresses` - Array of contract addresses
# * `contract_addresses_len` - Length of addresses array
#
# # Returns
# Result containing array of Token information or error
ResultPageToken client_tokens(ToriiClient *client,
const FieldElement *contract_addresses,
uintptr_t contract_addresses_len,
const U256 *token_ids,
uintptr_t token_ids_len,
uint32_t limit,
uint32_t offset,
const char *cursor);
# Subscribes to token updates
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `contract_addresses` - Array of contract addresses
# * `callback` - Function called when updates occur
#
# # Returns
# Result containing pointer to Subscription or error
ResultSubscription client_on_token_update(ToriiClient *client,
const FieldElement *contract_addresses,
uintptr_t contract_addresses_len,
const U256 *token_ids,
uintptr_t token_ids_len,
void (*callback)(Token));
# Gets token balances for given accounts and contracts
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `contract_addresses` - Array of contract addresses
# * `contract_addresses_len` - Length of contract addresses array
# * `account_addresses` - Array of account addresses
# * `account_addresses_len` - Length of account addresses array
#
# # Returns
# Result containing array of TokenBalance information or error
ResultPageTokenBalance client_token_balances(ToriiClient *client,
const FieldElement *contract_addresses,
uintptr_t contract_addresses_len,
const FieldElement *account_addresses,
uintptr_t account_addresses_len,
const U256 *token_ids,
uintptr_t token_ids_len,
uint32_t limit,
uint32_t offset,
const char *cursor);
# Subscribes to indexer updates
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `contract_address` - Optional contract address to filter updates
# * `callback` - Function called when updates occur
#
# # Returns
# Result containing pointer to Subscription or error
ResultSubscription on_indexer_update(ToriiClient *client,
const FieldElement *contract_address,
void (*callback)(IndexerUpdate));
# Subscribes to token balance updates
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `contract_addresses` - Array of contract addresses to filter (empty for all)
# * `contract_addresses_len` - Length of contract addresses array
# * `account_addresses` - Array of account addresses to filter (empty for all)
# * `account_addresses_len` - Length of account addresses array
# * `callback` - Function called when updates occur
#
# # Returns
# Result containing pointer to Subscription or error
ResultSubscription client_on_token_balance_update(ToriiClient *client,
const FieldElement *contract_addresses,
uintptr_t contract_addresses_len,
const FieldElement *account_addresses,
uintptr_t account_addresses_len,
const U256 *token_ids,
uintptr_t token_ids_len,
void (*callback)(TokenBalance));
# Updates an existing token balance subscription
#
# # Parameters
# * `client` - Pointer to ToriiClient instance
# * `subscription` - Pointer to existing Subscription
# * `contract_addresses` - Array of contract addresses to filter (empty for all)
# * `contract_addresses_len` - Length of contract addresses array
# * `account_addresses` - Array of account addresses to filter (empty for all)
# * `account_addresses_len` - Length of account addresses array
#
# # Returns
# Result containing success boolean or error
Resultbool client_update_token_balance_subscription(ToriiClient *client,
Subscription *subscription,
const FieldElement *contract_addresses,
uintptr_t contract_addresses_len,
const FieldElement *account_addresses,
uintptr_t account_addresses_len,
const U256 *token_ids,
uintptr_t token_ids_len);
# Serializes a string into a byte array
#
# # Parameters
# * `str` - String to serialize
#
# # Returns
# Result containing array of FieldElements or error
ResultCArrayFieldElement bytearray_serialize(const char *str);
# Deserializes field elements into a string
#
# # Parameters
# * `felts` - Array of field elements
# * `felts_len` - Length of field elements array
#
# # Returns
# Result containing pointer to C string or error
Resultc_char bytearray_deserialize(const FieldElement *felts, uintptr_t felts_len);
# Computes Poseidon hash of field elements
#
# # Parameters
# * `felts` - Array of field elements
# * `felts_len` - Length of array
#
# # Returns
# FieldElement containing the hash result
FieldElement poseidon_hash(const FieldElement *felts, uintptr_t felts_len);
# Gets selector from name string
#
# # Parameters
# * `name` - Name to compute selector from
#
# # Returns
# Result containing FieldElement selector or error
ResultFieldElement get_selector_from_name(const char *name);
# Gets selector from tag string
#
# # Parameters
# * `tag` - Tag to compute selector from
#
# # Returns
# FieldElement containing the computed selector
FieldElement get_selector_from_tag(const char *tag);
# Computes Starknet keccak hash of bytes
#
# # Parameters
# * `bytes` - Byte array to hash
# * `bytes_len` - Length of byte array
#
# # Returns
# FieldElement containing the hash result
FieldElement starknet_keccak(const uint8_t *bytes, uintptr_t bytes_len);
# Converts a short string to field element
#
# # Parameters
# * `str` - String to convert
#
# # Returns
# Result containing FieldElement or error
ResultFieldElement cairo_short_string_to_felt(const char *str);
# Parses a field element into a short string
#
# # Parameters
# * `felt` - FieldElement to parse
#
# # Returns
# Result containing pointer to C string or error
Resultc_char parse_cairo_short_string(FieldElement felt);
# Encodes typed data
#
# # Parameters
# * `typed_data` - JSON string of typed data
# * `address` - Address as FieldElement
#
# # Returns
# Result containing encoded FieldElement or error
ResultFieldElement typed_data_encode(const char *typed_data, FieldElement address);
# Generates a new signing key
#
# # Returns
# FieldElement containing the new private key
FieldElement signing_key_new();
# Signs a hash with a private key
#
# # Parameters
# * `private_key` - Private key as FieldElement
# * `hash` - Hash to sign as FieldElement