-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmethods.ts
1723 lines (1576 loc) · 45.9 KB
/
methods.ts
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
const STARKNET_JS_PREFIX = `// Installation Instructions: https://https://www.starknetjs.com/
const { RpcProvider } = require('starknet');
const provider = new RpcProvider({
nodeUrl: "https://free-rpc.nethermind.io/mainnet-juno/"
})
`;
const STARKNET_RS_PREFIX = `use starknet::{
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
`;
const STARKNET_RS_PREFIX_WITH_BLOCKID = `use starknet::{
core::types::{BlockId, BlockTag},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
`;
const STARKNET_GO_PREFIX = `package main
import (
"context"
"fmt"
"log"
"github.com/NethermindEth/juno/core/felt"
"github.com/NethermindEth/starknet.go/rpc"
"github.com/NethermindEth/starknet.go/utils"
)
func main() {
rpcUrl := "https://free-rpc.nethermind.io/mainnet-juno/"
client, err := rpc.NewClient(rpcUrl)
if err != nil {
log.Fatal(err)
}
provider := rpc.NewProvider(client) `;
const block_id = {
placeholder: "latest",
index: 0,
description:
"The hash of the requested block, or number (height) of the requested block, or a block tag",
oneOf: [
{ name: "block_tag", enum: ["latest", "pending"], placeholder: "latest" },
{
name: "block_hash",
pattern: "0x[0-9a-fA-F]{64}",
placeholder:
"0x1926fe58c6750d786c352d448f3318e675ab1e866a9a728c66fa873675eb9fd",
},
{ name: "block_number", pattern: "[0-9]+", placeholder: 474703 },
],
};
const simulation_flags = [
{
placeholder: "SKIP_VALIDATE",
description:
"Flags that indicate how to simulate a given transaction. By default, the sequencer behavior is replicated locally",
},
];
const contract_address = {
placeholder:
"0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49",
description: "The address of the contract",
};
const l1_address = {
placeholder: "0xc662c410c0ecf747543f5ba90660f6abebd9c8c4",
description: "The address of the l1 contract sending the message",
};
const transaction_hash = {
placeholder:
"0x7641514f46a77013e80215cdce2e55d5aca49c13428b885c7ecb9d3ddb4ab11",
description: "The hash of the requested transaction",
};
const entry_point_selector = {
placeholder: "name",
description: "The name of the function to call",
};
const calldata = {
placeholder: [],
description: `The calldata to send with the function call (e.g. ["0x1", "0x2"])`,
type: "Array",
};
const class_hash = {
placeholder:
"0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e",
description: "The hash of the contract class",
};
const functionCall = {
contract_address,
entry_point_selector,
calldata,
};
const max_fee = {
placeholder: "0x0",
description: "The maximum fee the sender is willing to pay",
};
const signature_invoke = {
placeholder: [
"0x1d4231646034435917d3513cafd6e22ce3ca9a783357137e32b7f52827a9f98",
"0x61c0b5bae9710c514817c772146dd7509517d2c47fd9bf622370215485ee5af",
],
description: `A transaction signature (e.g. ["0x1", "0x2"])`,
type: "Array",
};
const signature_declare = {
placeholder: [
"0x1d4231646034435917d3513cafd6e22ce3ca9a783357137e32b7f52827a9f98",
"0x61c0b5bae9710c514817c772146dd7509517d2c47fd9bf622370215485ee5af",
],
description: "A transaction signature",
type: "Array",
};
const signature_deploy_account = {
placeholder: [
"0xd96bc7affb5648b601ddb49e9fd23f6ebfe59375e2ce5dd06b7db638d21b71",
"0x6582c1512c8515254a52deb5fef1320d4f5dd0cb8352b260a4e7a90c61510ba",
"0x5dec330eebf36c8672b60db4a718d44762d3ae6d1333e553197acb47ee5a062",
"0x0",
"0x0",
"0x0",
"0x0",
"0x0",
"0x0",
"0x0",
],
description: "A transaction signature",
type: "Array",
};
const nonce = {
placeholder: "0x0",
description: "A field element. represented by at most 63 hex digits",
};
const resource_bounds_l1_gas_max_amount = {
placeholder: "0x0",
description: "The max amount of L1 gas used in this tx",
};
const resource_bounds_l1_gas_max_price_per_unit = {
placeholder: "0x0",
description: "The max price per unit of L1 gas used in this tx",
};
const resource_bounds_l2_gas_max_amount = {
placeholder: "0x0",
description: "The max amount of L2 gas used in this tx",
};
const resource_bounds_l2_gas_max_price_per_unit = {
placeholder: "0x0",
description: "The max price per unit of L2 gas used in this tx",
};
const tip = {
placeholder: "0x0",
description: "The tip for the transaction",
};
const paymaster_data = {
placeholder: [],
description:
"Data needed to allow the paymaster to pay for the transaction in native tokens",
type: "Array",
};
const account_deployment_data = {
placeholder: [],
description:
"Data needed to deploy the account contract from which this tx will be initiated",
type: "Array",
};
const nonce_data_availability_mode = {
placeholder: "L2",
description:
"The storage domain of the account's nonce (an account has a nonce per da mode)",
};
const fee_data_availability_mode = {
placeholder: "L2",
description:
"The storage domain of the account's balance from which fee will be charged",
};
const contract_address_salt = {
placeholder: "0x0",
description: "The salt for the address of the deployed contract",
};
const constructor_calldata = {
placeholder: [
"0x5aa23d5bb71ddaa783da7ea79d405315bafa7cf0387a74f4593578c3e9e6570",
"0x2dd76e7ad84dbed81c314ffe5e7a7cacfb8f4836f01af4e913f275f89a3de1a",
"0x1",
"0x61fcdc5594c726dc437ddc763265853d4dce51a57e25ff1d97b3e31401c7f4c",
],
description: "The parameters passed to the constructor",
};
const BROADCASTED_INVOKE_V1_TXN = {
name: "INVOKE V1",
fields: {
sender_address: contract_address,
calldata,
max_fee,
signature: signature_invoke,
nonce,
},
placeholder: "INVOKE V1",
};
const BROADCASTED_INVOKE_V3_TXN = {
name: "INVOKE V3",
fields: {
sender_address: contract_address,
calldata,
signature: signature_invoke,
nonce,
resource_bounds_l1_gas_max_amount,
resource_bounds_l1_gas_max_price_per_unit,
resource_bounds_l2_gas_max_amount,
resource_bounds_l2_gas_max_price_per_unit,
tip,
paymaster_data,
account_deployment_data,
nonce_data_availability_mode,
fee_data_availability_mode,
},
placeholder: "INVOKE V3",
};
const BROADCASTED_INVOKE_TXN = {
placeholder: "INVOKE V1",
index: 0,
description: "The type of the transaction",
oneOf: [BROADCASTED_INVOKE_V1_TXN, BROADCASTED_INVOKE_V3_TXN],
};
const BROADCASTED_DECLARE_V2_TXN = {
name: "DECLARE V2",
fields: {
sender_address: contract_address,
compiled_class_hash: class_hash,
max_fee,
signature: signature_declare,
nonce,
},
placeholder: "DECLARE V2",
};
const BROADCASTED_DECLARE_V3_TXN = {
name: "DECLARE V3",
fields: {
sender_address: contract_address,
compiled_class_hash: class_hash,
signature: signature_declare,
nonce,
resource_bounds_l1_gas_max_amount,
resource_bounds_l1_gas_max_price_per_unit,
resource_bounds_l2_gas_max_amount,
resource_bounds_l2_gas_max_price_per_unit,
tip,
paymaster_data,
account_deployment_data,
nonce_data_availability_mode,
fee_data_availability_mode,
},
placeholder: "DECLARE V3",
};
const BROADCASTED_DECLARE_TXN = {
placeholder: "DECLARE V2",
index: 0,
description: "The type of the transaction",
oneOf: [BROADCASTED_DECLARE_V2_TXN, BROADCASTED_DECLARE_V3_TXN],
};
const BROADCASTED_DEPLOY_ACCOUNT_V1_TXN = {
name: "DEPLOY_ACCOUNT V1",
fields: {
max_fee,
signature: signature_deploy_account,
nonce,
contract_address_salt,
constructor_calldata,
class_hash,
},
placeholder: "DEPLOY_ACCOUNT V1",
};
const BROADCASTED_DEPLOY_ACCOUNT_V3_TXN = {
name: "DEPLOY_ACCOUNT V3",
fields: {
signature: signature_deploy_account,
nonce,
contract_address_salt,
constructor_calldata,
class_hash,
resource_bounds_l1_gas_max_amount,
resource_bounds_l1_gas_max_price_per_unit,
resource_bounds_l2_gas_max_amount,
resource_bounds_l2_gas_max_price_per_unit,
tip,
paymaster_data,
nonce_data_availability_mode,
fee_data_availability_mode,
},
placeholder: "DEPLOY_ACCOUNT V3",
};
const BROADCASTED_DEPLOY_ACCOUNT_TXN = {
placeholder: "DEPLOY_ACCOUNT V1",
index: 0,
description: "The type of the transaction",
oneOf: [BROADCASTED_DEPLOY_ACCOUNT_V1_TXN, BROADCASTED_DEPLOY_ACCOUNT_V3_TXN],
};
const BROADCASTED_TXN = {
placeholder: "INVOKE V1",
index: 0,
description: "The type of the transaction",
oneOf: [
BROADCASTED_INVOKE_V1_TXN,
BROADCASTED_INVOKE_V3_TXN,
BROADCASTED_DECLARE_V2_TXN,
BROADCASTED_DECLARE_V3_TXN,
BROADCASTED_DEPLOY_ACCOUNT_V1_TXN,
BROADCASTED_DEPLOY_ACCOUNT_V3_TXN,
],
};
const ReadMethods = [
// Returns the version of the Starknet JSON-RPC specification being used
{
name: "starknet_specVersion",
params: [],
starknetJs: `${STARKNET_JS_PREFIX}provider.getSpecVersion().then(specVersion => {
console.log(specVersion);
});
`,
starknetGo: `package main
import (
"context"
"fmt"
"log"
"github.com/NethermindEth/starknet.go/rpc"
)
func main() {
rpcUrl := "https://free-rpc.nethermind.io/mainnet-juno/"
client, err := rpc.NewClient(rpcUrl)
if err != nil {
log.Fatal(err)
}
provider := rpc.NewProvider(client)
specVersion, err := provider.SpecVersion(context.Background())
if err != nil {
log.Fatal(err)
}
fmt.Println("SpecVersion:", specVersion)
}`,
starknetRs: `use starknet::{
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider.
spec_version()
.await;
match result {
Ok(spec_version) => {
println!("{spec_version:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Get block information with transaction hashes given the block id
{
name: "starknet_getBlockWithTxHashes",
params: {
block_id,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getBlockWithTxHashes("latest").then(block => {
console.log(block);
});
`,
starknetGo: `${STARKNET_GO_PREFIX}result, err := provider.BlockWithTxHashes(context.Background(), rpc.BlockID{Tag: "latest"})
if err != nil {
log.Fatal(err)
}
fmt.Println("BlockWithTxHashes:", result)
}`,
starknetRs: `use starknet::{
core::types::{BlockId, BlockTag},
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider.get_block_with_tx_hashes(BlockId::Tag(BlockTag::Latest)).await;
match result {
Ok(block) => {
println!("{block:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Get block information with full transactions given the block id
{
name: "starknet_getBlockWithTxs",
params: {
block_id,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getBlockWithTxs("latest").then(block => {
console.log(block);
});
`,
starknetGo: `${STARKNET_GO_PREFIX}result, err := provider.BlockWithTxs(context.Background(), rpc.BlockID{Tag: "latest"})
if err != nil {
log.Fatal(err)
}
fmt.Println("BlockWithTxs:", result)
}`,
starknetRs: `use starknet::{
core::types::{BlockId, BlockTag},
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider.get_block_with_txs(BlockId::Tag(BlockTag::Latest)).await;
match result {
Ok(block) => {
println!("{block:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Get block information with full transactions and receipts given the block id
{
name: "starknet_getBlockWithReceipts",
params: {
block_id,
},
starknetJs: ``,
starknetGo: ``,
starknetRs: ``,
},
// Get the information about the result of executing the requested block
{
name: "starknet_getStateUpdate",
params: {
block_id,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getBlockStateUpdate("latest").then(stateUpdate => {
console.log(stateUpdate);
});
`,
starknetGo: `${STARKNET_GO_PREFIX}result, err := provider.StateUpdate(context.Background(), rpc.BlockID{Tag: "latest"})
if err != nil {
log.Fatal(err)
}
fmt.Println("StateUpdate:", result)
}`,
starknetRs: `use starknet::{
core::types::{BlockId, BlockTag,MaybePendingStateUpdate},
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider.get_state_update(BlockId::Tag(BlockTag::Latest)).await;
match result {
Ok(state_update) => {
println!("{state_update:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}`,
},
// Get the value of the storage at the given address and key
{
name: "starknet_getStorageAt",
params: {
contract_address,
key: {
placeholder:
"0x1001e85047571380eed1d7e1cc5a9af6a707b3d65789bb1702c7d680e5e87e",
description: "The key to the storage value for the given contract",
},
block_id,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getStorageAt("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49", "0x1001e85047571380eed1d7e1cc5a9af6a707b3d65789bb1702c7d680e5e87e", "latest").then(storage => {
console.log(storage);
});
`,
starknetGo: `${STARKNET_GO_PREFIX}contractAddress, _ := utils.HexToFelt("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49")
key, _ := utils.HexToFelt("0x1001e85047571380eed1d7e1cc5a9af6a707b3d65789bb1702c7d680e5e87e")
result, err := provider.StorageAt(context.Background(), contractAddress, key, rpc.BlockID{Tag: "latest"})
if err != nil {
log.Fatal(err)
}
fmt.Println("StorageAt:", result)
}`,
starknetRs: `use starknet::{
core::types::{BlockId,BlockTag},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider.get_storage_at(felt!("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49"),felt!("0x1001e85047571380eed1d7e1cc5a9af6a707b3d65789bb1702c7d680e5e87e"),BlockId::Tag(BlockTag::Latest)).await;
match result {
Ok(storage) => {
println!("{storage:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Gets the transaction status (possibly reflecting that the tx is still in the mempool, or dropped from it)
{
name: "starknet_getTransactionStatus",
params: {
transaction_hash,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getTransactionStatus("0x7641514f46a77013e80215cdce2e55d5aca49c13428b885c7ecb9d3ddb4ab11").then(transactionStatus => {
console.log(transactionStatus);
});
`,
starknetGo: ``,
starknetRs: `${STARKNET_RS_PREFIX}let result = provider
.get_transaction_status(felt!("0x7641514f46a77013e80215cdce2e55d5aca49c13428b885c7ecb9d3ddb4ab11"))
.await;
match result {
Ok(transaction_status) => {
println!("{:#?}", transaction_status);
}
Err(err) => {
eprintln!("Error: {}", err);
}
}
}
`,
},
// Get the details and status of a submitted transaction
{
name: "starknet_getTransactionByHash",
params: {
transaction_hash,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getTransactionByHash("0x7641514f46a77013e80215cdce2e55d5aca49c13428b885c7ecb9d3ddb4ab11").then(transaction => {
console.log(transaction);
});
`,
starknetGo: ``,
starknetRs: `${STARKNET_RS_PREFIX}let result = provider
.get_transaction_by_hash(felt!("0x7641514f46a77013e80215cdce2e55d5aca49c13428b885c7ecb9d3ddb4ab11"))
.await;
match result {
Ok(transaction) => {
println!("{transaction:#?}");
}
Err(err) => {
eprintln!("Error: {}", err);
}
}
}
`,
},
// Get the details of a transaction by a given block id and index
{
name: "starknet_getTransactionByBlockIdAndIndex",
params: {
block_id,
index: {
placeholder: 0,
description: "The index of the transaction in the block",
},
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getTransactionByBlockIdAndIndex("latest", 0).then(transaction => {
console.log(transaction);
});
`,
starknetGo: ``,
starknetRs: `${STARKNET_RS_PREFIX_WITH_BLOCKID}let result = provider
.get_transaction_by_block_id_and_index(BlockId::Tag(BlockTag::Latest), 0)
.await;
match result {
Ok(transaction) => {
println!("{:#?}", transaction);
}
Err(err) => {
eprintln!("Error: {}", err);
}
}
}
`,
},
// Get the transaction receipt by the transaction hash
{
name: "starknet_getTransactionReceipt",
params: {
transaction_hash,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getTransactionReceipt("0x7641514f46a77013e80215cdce2e55d5aca49c13428b885c7ecb9d3ddb4ab11").then(transactionReceipt => {
console.log(transactionReceipt);
});
`,
starknetGo: ``,
starknetRs: `${STARKNET_RS_PREFIX}let result = provider
.get_transaction_receipt(felt!("0x7641514f46a77013e80215cdce2e55d5aca49c13428b885c7ecb9d3ddb4ab11"))
.await;
match result {
Ok(transaction_receipt) => {
println!("{:#?}", transaction_receipt);
}
Err(err) => {
eprintln!("Error: {}", err);
}
}
}
`,
},
// Get the contract class definition in the given block associated with the given hash
{
name: "starknet_getClass",
params: {
block_id,
class_hash,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getClass("latest", "0x07fc0b6ecc96a698cdac8c4ae447816d73bffdd9603faacffc0a8047149d02ed").then(class => {
console.log(class);
});
`,
starknetGo: `${STARKNET_GO_PREFIX}
classHash, err := utils.HexToFelt("0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e")
if err != nil {
log.Fatal(err)
}
result, err := provider.Class(context.Background(), rpc.BlockID{Tag: "latest"}, classHash)
if err != nil {
log.Fatal(err)
}
fmt.Println("Class: ", result)
}`,
starknetRs: `use starknet::{
core::types::{BlockId, BlockTag},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider
.get_class(BlockId::Tag(BlockTag::Latest), felt!("0x3131fa018d520a037686ce3efddeab8f28895662f019ca3ca18a626650f7d1e"))
.await;
match result {
Ok(contract_class) => {
println!("{contract_class:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Get the contract class hash in the given block for the contract deployed at the given address
{
name: "starknet_getClassHashAt",
params: {
block_id,
contract_address,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getClassHashAt("latest", "0x049D36570D4e46f48e99674bd3fcc84644DdD6b96F7C741B1562B82f9e004dC7").then(classHash => {
console.log(classHash);
});
`,
starknetGo: `${STARKNET_GO_PREFIX}
contractAddress, err := utils.HexToFelt("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49")
if err != nil {
log.Fatal(err)
}
result, err := provider.ClassHashAt(context.Background(), rpc.BlockID{Tag: "latest"}, contractAddress)
if err != nil {
log.Fatal(err)
}
fmt.Println("ClassHash:", result)
}`,
starknetRs: `use starknet::{
core::types::{BlockId, BlockTag},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider
.get_class_hash_at(BlockId::Tag(BlockTag::Latest), felt!("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49"))
.await;
match result {
Ok(class_hash) => {
println!("{class_hash:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Get the contract class definition in the given block at the given address
{
name: "starknet_getClassAt",
params: {
block_id,
contract_address,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getClassAt("latest", "0x049D36570D4e46f48e99674bd3fcc84644DdD6b96F7C741B1562B82f9e004dC7").then(class => {
console.log(class);
});
`,
starknetGo: `${STARKNET_GO_PREFIX}
contractAddress, err := utils.HexToFelt("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49")
if err != nil {
log.Fatal(err)
}
result, err := provider.ClassAt(context.Background(), rpc.BlockID{Tag: "latest"}, contractAddress)
if err != nil {
log.Fatal(err)
}
fmt.Println("ClassOutput: ", result)
}`,
starknetRs: `use starknet::{
core::types::{BlockId, BlockTag},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider
.get_class_at(BlockId::Tag(BlockTag::Latest), felt!("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49"))
.await;
match result {
Ok(contract_class) => {
println!("{contract_class:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Get the number of transactions in a block given a block id
{
name: "starknet_getBlockTransactionCount",
params: {
block_id,
},
starknetJs: `${STARKNET_JS_PREFIX}provider.getBlockTransactionCount("latest").then(transactionCount => {
console.log(transactionCount);
});
`,
starknetGo: ``,
starknetRs: `${STARKNET_RS_PREFIX_WITH_BLOCKID}let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider
.get_block_transaction_count(BlockId::Tag(BlockTag::Latest))
.await;
match result {
Ok(transaction_count) => {
println!("{:#?}", transaction_count);
}
Err(err) => {
eprintln!("Error: {}", err);
}
}
}
`,
},
// Call a StarkNet function without creating a StarkNet transaction
{
name: "starknet_call",
params: {
request: functionCall,
block_id,
},
starknetJs: ``,
starknetGo: ``,
starknetRs: `use starknet::{
core::types::{FunctionCall, BlockId, BlockTag},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://free-rpc.nethermind.io/mainnet-juno/").unwrap(),
));
let result = provider
.call(
FunctionCall {
contract_address: felt!("0x124aeb495b947201f5fac96fd1138e326ad86195b98df6dec9009158a533b49"),
entry_point_selector: felt!("0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60"),
calldata: vec![],
},
BlockId::Tag(BlockTag::Latest),
)
.await;
match result {
Ok(call_result) => {
println!("{call_result:#?}");
}
Err(err) => {
eprintln!("Error: {err}");
}
}
}
`,
},
// Estimate the fee for StarkNet transactions
{
name: "starknet_estimateFee",
params: {
request: [BROADCASTED_TXN],
simulation_flags,
block_id,
},
starknetJs: ``,
starknetGo: ``,
starknetRs: `use std::sync::Arc;
use starknet::{
core::types::{
contract::SierraClass, FieldElement, BlockId, BlockTag, BroadcastedTransaction,
BroadcastedInvokeTransaction, BroadcastedInvokeTransactionV1, BroadcastedInvokeTransactionV3,
BroadcastedDeclareTransaction, BroadcastedDeclareTransactionV2, BroadcastedDeclareTransactionV3,
BroadcastedDeployAccountTransaction, BroadcastedDeployAccountTransactionV1, BroadcastedDeployAccountTransactionV3,
DataAvailabilityMode, ResourceBoundsMapping, ResourceBounds, SimulationFlag, SimulationFlagForEstimateFee
},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Provider, Url,
},