-
Notifications
You must be signed in to change notification settings - Fork 11
/
SuiIntTests.java
1212 lines (1131 loc) · 44.7 KB
/
SuiIntTests.java
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
/*
* Copyright 2022-2023 [email protected]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package io.sui;
import com.google.common.collect.Lists;
import io.reactivex.rxjava3.disposables.Disposable;
import io.sui.bcsgen.Argument;
import io.sui.bcsgen.Intent;
import io.sui.bcsgen.TransactionData;
import io.sui.clients.QueryClient;
import io.sui.clients.TransactionBlock;
import io.sui.crypto.KeyResponse;
import io.sui.crypto.SignatureScheme;
import io.sui.models.FaucetResponse;
import io.sui.models.coin.Balance;
import io.sui.models.coin.CoinMetadata;
import io.sui.models.coin.CoinSupply;
import io.sui.models.coin.PaginatedCoins;
import io.sui.models.events.EventFilter.AllEventFilter;
import io.sui.models.events.PaginatedEvents;
import io.sui.models.events.SuiEvent;
import io.sui.models.governance.DelegatedStake;
import io.sui.models.governance.SuiCommitteeInfo;
import io.sui.models.governance.SystemStateSummary;
import io.sui.models.governance.ValidatorsApy;
import io.sui.models.objects.Checkpoint;
import io.sui.models.objects.MoveFunctionArgType;
import io.sui.models.objects.MoveNormalizedFunction;
import io.sui.models.objects.MoveNormalizedModule;
import io.sui.models.objects.MoveNormalizedStruct;
import io.sui.models.objects.ObjectDataOptions;
import io.sui.models.objects.ObjectResponseQuery;
import io.sui.models.objects.PaginatedCheckpoint;
import io.sui.models.objects.PaginatedObjectsResponse;
import io.sui.models.objects.SuiObjectResponse;
import io.sui.models.transactions.ExecuteTransactionRequestType;
import io.sui.models.transactions.PaginatedTransactionBlockResponse;
import io.sui.models.transactions.StructTag;
import io.sui.models.transactions.TransactionBlockResponse;
import io.sui.models.transactions.TransactionBlockResponseOptions;
import io.sui.models.transactions.TransactionBlockResponseQuery;
import io.sui.models.transactions.TransactionFilter.FromAddressFilter;
import java.io.IOException;
import java.math.BigInteger;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import java.util.stream.Collectors;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
/**
* The type Sui int tests.
*
* @author grapebaba
* @since 2022.11
*/
public class SuiIntTests {
private static final String BASE_NODE_URL = "http://localhost:9000";
// private static final String BASE_NODE_URL = "https://fullnode.devnet.sui.io:443";
private static final String BASE_FAUCET_URL = "http://localhost:9123";
// private static final String BASE_FAUCET_URL = "https://faucet.devnet.sui.io";
// private static final String TEST_KEY_STORE_PATH =
// System.getProperty("user.home") + "/.sui/sui_config/sui.keystore";
private static final String KEY_STORE_PATH =
Paths.get("src", "integrationTest", "sui.keystore").toAbsolutePath().toString();
private static final Sui SUI = new Sui(BASE_NODE_URL, BASE_FAUCET_URL, KEY_STORE_PATH);
@BeforeAll
static void setUp() {
newAddress();
requestSuiFromFaucet();
}
@AfterAll
static void tearDown() throws IOException {
Files.delete(Paths.get("src", "integrationTest", "sui.keystore").toAbsolutePath());
}
/** New address. */
static void newAddress() {
KeyResponse res1 = SUI.newAddress(SignatureScheme.ED25519);
System.out.printf("mnemonic+address:%s%n", res1);
System.out.println();
KeyResponse res2 = SUI.newAddress(SignatureScheme.ED25519);
System.out.printf("mnemonic+address:%s%n", res2);
System.out.println();
KeyResponse res3 = SUI.newAddress(SignatureScheme.Secp256k1);
System.out.printf("mnemonic+address:%s%n", res3);
System.out.println();
}
/** Request sui from faucet. */
static void requestSuiFromFaucet() {
SUI.addresses()
.forEach(
s -> {
System.out.printf("address:%s%n", s);
CompletableFuture<FaucetResponse> res = SUI.requestSuiFromFaucet(s);
try {
TimeUnit.SECONDS.sleep(2);
System.out.printf("faucet response: %s%n%n", res.get());
} catch (InterruptedException | ExecutionException e) {
e.printStackTrace();
Assertions.fail();
}
});
}
/**
* Move call.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test moveCall.")
void moveCall() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
final SuiObjectResponse suiObjectResponse =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null).get().getData().get(0);
TransactionBlockResponseOptions transactionBlockResponseOptions =
new TransactionBlockResponseOptions();
transactionBlockResponseOptions.setShowEffects(true);
transactionBlockResponseOptions.setShowEvents(true);
transactionBlockResponseOptions.setShowInput(true);
transactionBlockResponseOptions.setShowObjectChanges(true);
final io.sui.models.transactions.TypeTag.StructType structType =
new io.sui.models.transactions.TypeTag.StructType();
io.sui.models.transactions.StructTag structTag = new StructTag();
structTag.setAddress("0x02");
structTag.setModule("sui");
structTag.setName("SUI");
structType.setStructTag(structTag);
CompletableFuture<TransactionBlockResponse> res =
SUI.moveCall(
sender.get(),
"0x02",
"pay",
"split",
Lists.newArrayList(structType),
Lists.newArrayList(suiObjectResponse.getData().getObjectId(), 10000L),
null,
3000000L,
null,
null,
transactionBlockResponseOptions,
ExecuteTransactionRequestType.WaitForLocalExecution);
System.out.println(res.get());
}
/**
* Transfer object.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test transferObject.")
void transferObjects() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (sender.isPresent()) {
final Optional<String> recipient =
SUI.addresses().stream().filter(s -> !s.equals(sender.get())).findFirst();
if (recipient.isPresent()) {
List<SuiObjectResponse> objects =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null).get().getData();
TransactionBlockResponseOptions transactionBlockResponseOptions =
new TransactionBlockResponseOptions();
transactionBlockResponseOptions.setShowEffects(true);
transactionBlockResponseOptions.setShowEvents(true);
transactionBlockResponseOptions.setShowInput(true);
transactionBlockResponseOptions.setShowObjectChanges(true);
CompletableFuture<TransactionBlockResponse> res =
SUI.transferObjects(
sender.get(),
Lists.newArrayList(objects.get(0).getData().getObjectId()),
recipient.get(),
null,
3000000L,
null,
null,
transactionBlockResponseOptions,
ExecuteTransactionRequestType.WaitForLocalExecution);
CompletableFuture<Object> future = new CompletableFuture<>();
res.whenComplete(
(transactionResponse, throwable) -> {
if (throwable != null) {
future.complete(throwable);
} else {
future.complete(transactionResponse);
}
});
System.out.println(future.get());
} else {
Assertions.fail();
}
} else {
Assertions.fail();
}
}
/**
* Publish.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test publish.")
void publish() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
TransactionBlockResponseOptions transactionBlockResponseOptions =
new TransactionBlockResponseOptions();
transactionBlockResponseOptions.setShowEffects(true);
transactionBlockResponseOptions.setShowEvents(true);
transactionBlockResponseOptions.setShowInput(true);
transactionBlockResponseOptions.setShowObjectChanges(true);
CompletableFuture<TransactionBlockResponse> res =
SUI.publish(
sender.get(),
Lists.newArrayList(
"oRzrCwYAAAAKAQAUAhQsA0BJBIkBEgWbAWcHggLNAgjPBGAGrwXCAwrxCC0MngnUAQAMAR4B"
+ "JAIRAh0CHwIlAiYCJwIoAAACAAABDAAAAwQAAQQHAQAAAgYHAAMCDAEIAQQIBAAFBQwABwcCAAkJ"
+ "BwAAFgABAAEcARUBAAEjFBUBAAIpCwwAAwoNAQEIAxoJCgEIBBoSEwAFDgYHAQIGIREBAQwGJREB"
+ "AQgHIg4PAAgXBAUBAgkbCxYACwMHAwUIBAgIEAgHAgwBDAkIAggABwgIAAILBQEIAQgHAQgAAQYJ"
+ "AAEBAgkABwgIAQgHAQgBAgYIBwcICAELBQEJAAEKAgEIBAMHCwUBCQAKCAQKCAQBBggIAQUBCwUB"
+ "CAECCQAFAQcICAEIBgEJAAELAwEJAAEICQVCT0FSUwRCb2FyB0Rpc3BsYXkITWV0YWRhdGEGT3B0"
+ "aW9uCVB1Ymxpc2hlcgZTdHJpbmcJVHhDb250ZXh0A1VJRANVcmwMYWRkX211bHRpcGxlA2FnZQVi"
+ "b2FycwVidXllcgVjbGFpbQdjcmVhdG9yC2Rlc2NyaXB0aW9uB2Rpc3BsYXkLZHVtbXlfZmllbGQI"
+ "ZnVsbF91cmwCaWQHaW1nX3VybARpbml0E2lzX29uZV90aW1lX3dpdG5lc3MIbWV0YWRhdGEEbmFt"
+ "ZQNuZXcVbmV3X3Vuc2FmZV9mcm9tX2J5dGVzBG5vbmUGb2JqZWN0Bm9wdGlvbgdwYWNrYWdlBXBy"
+ "aWNlD3B1YmxpY190cmFuc2ZlcgZzZW5kZXIEc29tZQZzdHJpbmcIdHJhbnNmZXIKdHhfY29udGV4"
+ "dAV0eXBlcwN1cmwEdXRmOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
+ "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgMI"
+ "AAAAAAAAAAAKAgUEbmFtZQoCDAtkZXNjcmlwdGlvbgoCCAdpbWdfdXJsCgIIB2NyZWF0b3IKAgYF"
+ "cHJpY2UKAgwLcHJvamVjdF91cmwKAgQDYWdlCgIGBWJ1eWVyCgIJCGZ1bGxfdXJsCgIODWVzY2Fw"
+ "ZV9zeW50YXgKAgcGe25hbWV9CgI7OlVuaXF1ZSBCb2FyIGZyb20gdGhlIEJvYXJzIGNvbGxlY3Rp"
+ "b24gd2l0aCB7bmFtZX0gYW5kIHtpZH0KAiEgaHR0cHM6Ly9nZXQtYS1ib2FyLmNvbS97aW1nX3Vy"
+ "bH0KAgoJe2NyZWF0b3J9CgIIB3twcmljZX0KAhgXaHR0cHM6Ly9nZXQtYS1ib2FyLmNvbS8KAg8O"
+ "e21ldGFkYXRhLmFnZX0KAggHe2J1eWVyfQoCCwp7ZnVsbF91cmx9CgIJCFx7bmFtZVx9CgIKCWZp"
+ "cnN0LnBuZwoCCwpGaXJzdCBCb2FyCgImJUZpcnN0IEJvYXIgZnJvbSB0aGUgQm9hcnMgY29sbGVj"
+ "dGlvbiEKAgYFQ2hyaXMKAiAfaHR0cHM6Ly9nZXQtYS1ib2FyLmZ1bGx1cmwuY29tLwACARIBAQIJ"
+ "FAgGFQgEGQgEEAgEDwsDAQgEIAsDAQgEGAgCDQUTCAkCAgELAwAAAAACXw4AOAAEBAUICwEBBwAn"
+ "CwAKATgBDAMOAwoBOAIMAg0CBwERAwcCEQMHAxEDBwQRAwcFEQMHBhEDBwcRAwcIEQMHCREDBwoR"
+ "A0AMCgAAAAAAAAAHCxEDBwwRAwcNEQMHDhEDBw8RAwcQEQMHEREDBxIRAwcTEQMHFBEDQAwKAAAA"
+ "AAAAADgDCwIKAS4RCjgECwMKAS4RCjgFCgERBgcVEQMHFhEDBxcRAwcYEQM4BjgHBgoAAAAAAAAA"
+ "EgIKAS4RCgcZEQwSAQsBLhEKOAgCAA=="),
Lists.newArrayList(
"0x0000000000000000000000000000000000000000000000000000000000000001",
"0x0000000000000000000000000000000000000000000000000000000000000002"),
null,
30000000L,
null,
null,
transactionBlockResponseOptions,
ExecuteTransactionRequestType.WaitForLocalExecution);
System.out.println(res.get());
}
/**
* Subscribe event.
*
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test subscribeEvent.")
void subscribeEvent() throws InterruptedException {
AllEventFilter eventFilter = new AllEventFilter();
Disposable disposable =
SUI.subscribeEvent(eventFilter, System.out::println, System.out::println);
TimeUnit.SECONDS.sleep(10);
disposable.dispose();
}
/**
* Subscribe transaction.
*
* @throws InterruptedException the interrupted exception
* @throws ExecutionException the execution exception
*/
@Test
@DisplayName("Test subscribeTransaction.")
void subscribeTransaction() throws InterruptedException, ExecutionException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
FromAddressFilter transactionFilter = new FromAddressFilter();
transactionFilter.setFromAddress(sender.get());
final SuiObjectResponse suiObjectResponse =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null).get().getData().get(0);
TransactionBlockResponseOptions transactionBlockResponseOptions =
new TransactionBlockResponseOptions();
transactionBlockResponseOptions.setShowEffects(true);
transactionBlockResponseOptions.setShowEvents(true);
transactionBlockResponseOptions.setShowInput(true);
transactionBlockResponseOptions.setShowObjectChanges(true);
final io.sui.models.transactions.TypeTag.StructType structType =
new io.sui.models.transactions.TypeTag.StructType();
io.sui.models.transactions.StructTag structTag = new StructTag();
structTag.setAddress("0x02");
structTag.setModule("sui");
structTag.setName("SUI");
structType.setStructTag(structTag);
Disposable disposable =
SUI.subscribeTransaction(transactionFilter, System.out::println, System.out::println);
SUI.moveCall(
sender.get(),
"0x02",
"pay",
"split",
Lists.newArrayList(structType),
Lists.newArrayList(suiObjectResponse.getData().getObjectId(), 10000L),
null,
3000000L,
null,
null,
transactionBlockResponseOptions,
ExecuteTransactionRequestType.WaitForLocalExecution);
TimeUnit.SECONDS.sleep(5);
disposable.dispose();
}
/**
* Sponsored transaction.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test sponsoredTransaction.")
void sponsoredTransaction() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
final Optional<String> recipient =
SUI.addresses().stream().filter(s -> !s.equals(sender.get())).findFirst();
if (!recipient.isPresent()) {
Assertions.fail();
}
final Optional<String> sponsor =
SUI.addresses().stream()
.filter(s -> !s.equals(sender.get()) && !s.equals(recipient.get()))
.findFirst();
if (!sponsor.isPresent()) {
Assertions.fail();
}
List<SuiObjectResponse> objects =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null).get().getData();
CompletableFuture<TransactionBlockResponse> res =
SUI.newTransactionBlock()
.thenCompose(
(Function<TransactionBlock, CompletableFuture<TransactionBlockResponse>>)
transactionBlock -> {
transactionBlock.setExpiration(null);
transactionBlock.setSender(sender.get());
return transactionBlock
.transferObjects(
Lists.newArrayList(objects.get(0).getData().getObjectId()),
recipient.get())
.thenCompose(
(Function<Argument, CompletableFuture<TransactionBlockResponse>>)
argument -> {
final CompletableFuture<TransactionData>
transactionDataCompletableFuture =
transactionBlock
.setGasData(
Lists.newArrayList(),
sponsor.get(),
3000000L,
null)
.thenCompose(
(Function<
Void,
CompletableFuture<TransactionData>>)
unused -> transactionBlock.build());
TransactionBlockResponseOptions
transactionBlockResponseOptions =
new TransactionBlockResponseOptions();
transactionBlockResponseOptions.setShowEffects(true);
transactionBlockResponseOptions.setShowEvents(true);
transactionBlockResponseOptions.setShowInput(true);
transactionBlockResponseOptions.setShowObjectChanges(true);
return transactionDataCompletableFuture.thenCompose(
(Function<
TransactionData,
CompletableFuture<TransactionBlockResponse>>)
transactionData -> {
Intent intent = SUI.transactionDataIntent();
String sponsorSig =
SUI.signTransactionBlock(
sponsor.get(), transactionData, intent);
String senderSig =
SUI.signTransactionBlock(
sender.get(), transactionData, intent);
return SUI.executeTransaction(
transactionData,
Lists.newArrayList(senderSig, sponsorSig),
transactionBlockResponseOptions,
ExecuteTransactionRequestType
.WaitForLocalExecution);
});
});
});
System.out.println(res.get());
}
/**
* Gets all coins.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getAllCoins.")
void getAllCoins() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
CompletableFuture<PaginatedCoins> res = SUI.getAllCoins(sender.get(), null, null);
System.out.printf("paginated coins:%s%n", res.get());
}
/**
* Gets balance.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getBalance.")
void getBalance() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
CompletableFuture<Balance> res = SUI.getBalance(sender.get(), null);
System.out.printf("balance:%s%n", res.get());
}
/**
* Transfer sui.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@SuppressWarnings("checkstyle:CommentsIndentation")
@Test
@DisplayName("Test transferSui.")
void transferSui() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
final Optional<String> recipient =
SUI.addresses().stream().filter(s -> !s.equals(sender.get())).findFirst();
if (!recipient.isPresent()) {
Assertions.fail();
}
TransactionBlockResponseOptions transactionBlockResponseOptions =
new TransactionBlockResponseOptions();
transactionBlockResponseOptions.setShowEffects(true);
transactionBlockResponseOptions.setShowEvents(true);
transactionBlockResponseOptions.setShowInput(true);
transactionBlockResponseOptions.setShowObjectChanges(true);
CompletableFuture<TransactionBlockResponse> res =
SUI.transferSui(
sender.get(),
null,
recipient.get(),
20000L,
null,
3000000L,
null,
null,
transactionBlockResponseOptions,
ExecuteTransactionRequestType.WaitForLocalExecution);
System.out.println(res.get());
}
/**
* Merge coin.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test mergeCoin.")
void mergeCoin() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 3;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
TransactionBlockResponseOptions transactionBlockResponseOptions =
new TransactionBlockResponseOptions();
transactionBlockResponseOptions.setShowEffects(true);
transactionBlockResponseOptions.setShowEvents(true);
transactionBlockResponseOptions.setShowInput(true);
transactionBlockResponseOptions.setShowObjectChanges(true);
String dest =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null)
.get()
.getData()
.get(0)
.getData()
.getObjectId();
List<String> source =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null).get().getData()
.subList(1, 2).stream()
.map(suiObjectResponse -> suiObjectResponse.getData().getObjectId())
.collect(Collectors.toList());
CompletableFuture<TransactionBlockResponse> res =
SUI.mergeCoin(
sender.get(),
dest,
source,
null,
3000000L,
null,
null,
transactionBlockResponseOptions,
ExecuteTransactionRequestType.WaitForLocalExecution);
System.out.println(res.get());
}
/**
* Gets total transaction number.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getTotalTransactionBlocks.")
void getTotalTransactionBlocks() throws ExecutionException, InterruptedException {
CompletableFuture<Long> res = SUI.getTotalTransactionBlocks();
System.out.printf("total transaction blocks:%d%n", res.get());
}
/**
* Gets objects owned by address.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getOwnedObjects.")
void getObjectsOwnedByAddress() throws ExecutionException, InterruptedException {
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, new ObjectResponseQuery(), null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
System.out.println(sender.get());
CompletableFuture<PaginatedObjectsResponse> res =
SUI.getOwnedObjects(sender.get(), null, null, null);
System.out.printf("paginated objects:%s%n", res.get());
}
/**
* Query transaction blocks.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test queryTransactionBlocks.")
void queryTransactionBlocks() throws ExecutionException, InterruptedException {
TransactionBlockResponseQuery query = new TransactionBlockResponseQuery();
CompletableFuture<PaginatedTransactionBlockResponse> res =
SUI.queryTransactionBlocks(query, null, 10, false);
System.out.printf("paginated transaction blocks:%s%n", res.get());
}
/**
* Gets transaction block.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getTransactionBlock.")
void getTransactionBlock() throws ExecutionException, InterruptedException {
TransactionBlockResponseQuery query = new TransactionBlockResponseQuery();
CompletableFuture<PaginatedTransactionBlockResponse> res =
SUI.queryTransactionBlocks(query, null, 10, false);
TransactionBlockResponseOptions options = new TransactionBlockResponseOptions();
options.setShowInput(true);
options.setShowEffects(true);
CompletableFuture<TransactionBlockResponse> res1 =
SUI.getTransactionBlock(res.get().getData().get(2).getDigest(), options);
System.out.printf("transaction block:%s%n", res1.get());
}
/**
* Multi get transaction blocks.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test multiGetTransactionBlocks.")
void multiGetTransactionBlocks() throws ExecutionException, InterruptedException {
TransactionBlockResponseQuery query = new TransactionBlockResponseQuery();
CompletableFuture<PaginatedTransactionBlockResponse> res =
SUI.queryTransactionBlocks(query, null, 10, false);
TransactionBlockResponseOptions options = new TransactionBlockResponseOptions();
options.setShowInput(true);
options.setShowEffects(true);
CompletableFuture<List<TransactionBlockResponse>> res1 =
SUI.multiGetTransactionBlocks(
Lists.newArrayList(
res.get().getData().get(0).getDigest(), res.get().getData().get(1).getDigest()),
options);
System.out.printf("transaction blocks:%s%n", res1.get());
}
/**
* Multi get objects.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test multiGetObjects.")
void multiGetObjects() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
List<String> objects =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null).get().getData().stream()
.map(suiObjectResponse -> suiObjectResponse.getData().getObjectId())
.collect(Collectors.toList());
CompletableFuture<List<SuiObjectResponse>> res1 =
SUI.multiGetObjects(objects, new ObjectDataOptions());
System.out.printf("object responses:%s%n", res1.get());
}
/**
* Gets events.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test queryEvents.")
void queryEvents() throws ExecutionException, InterruptedException {
AllEventFilter eventFilter = new AllEventFilter();
CompletableFuture<PaginatedEvents> res = SUI.queryEvents(eventFilter, null, 10, false);
System.out.println(res.get());
}
/**
* Gets validators apy.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getValidatorsApy.")
void getValidatorsApy() throws ExecutionException, InterruptedException {
CompletableFuture<ValidatorsApy> res = SUI.getValidatorsApy();
System.out.println(res.get());
}
/**
* Gets total supply.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getTotalSupply.")
void getTotalSupply() throws ExecutionException, InterruptedException {
CompletableFuture<CoinSupply> res = SUI.getTotalSupply("0x2::sui::SUI");
System.out.println(res.get());
}
/**
* Gets stakes by ids.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getStakesByIds.")
void getStakesByIds() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
List<String> objects =
SUI.getOwnedObjects(sender.get(), objectResponseQuery, null, null).get().getData().stream()
.map(suiObjectResponse -> suiObjectResponse.getData().getObjectId())
.collect(Collectors.toList());
CompletableFuture<List<DelegatedStake>> res = SUI.getStakesByIds(Lists.newArrayList());
res.whenComplete(
(delegatedStake, throwable) -> {
if (throwable != null) {
System.out.println(throwable.getMessage());
} else {
System.out.println(delegatedStake);
}
});
}
/**
* Gets stakes.
*
* @throws ExecutionException the execution exception
* @throws InterruptedException the interrupted exception
*/
@Test
@DisplayName("Test getStakes.")
void getStakes() throws ExecutionException, InterruptedException {
ObjectResponseQuery objectResponseQuery = new ObjectResponseQuery();
objectResponseQuery.setOptions(new ObjectDataOptions());
final Optional<String> sender =
SUI.addresses().stream()
.filter(
s -> {
try {
return SUI.getOwnedObjects(s, objectResponseQuery, null, null)
.get()
.getData()
.size()
> 1;
} catch (InterruptedException | ExecutionException e) {
return false;
}
})
.findFirst();
if (!sender.isPresent()) {
Assertions.fail();
}
CompletableFuture<List<DelegatedStake>> res = SUI.getStakes(sender.get());
System.out.println(res.get());
}
/**
* Gets latest sui system state.
*
* @throws ExecutionException the execution exception