@sentio/sdk 4.0.1-rc.2 → 4.0.1-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/assets/chainlink-oracles-sepolia.json +21 -0
  2. package/assets/chainlink-oracles.json +219 -0
  3. package/dist/aptos/builtin/0x1.d.ts +154 -16
  4. package/dist/aptos/builtin/0x1.d.ts.map +1 -1
  5. package/dist/aptos/builtin/0x1.js +238 -34
  6. package/dist/aptos/builtin/0x1.js.map +1 -1
  7. package/dist/aptos/builtin/0x3.js +1 -1
  8. package/dist/aptos/builtin/0x4.js +1 -1
  9. package/dist/eth/context.d.ts.map +1 -1
  10. package/dist/eth/context.js +1 -1
  11. package/dist/eth/context.js.map +1 -1
  12. package/dist/eth/eth.d.ts +11 -0
  13. package/dist/eth/eth.d.ts.map +1 -1
  14. package/dist/eth/eth.js +134 -8
  15. package/dist/eth/eth.js.map +1 -1
  16. package/dist/eth/ethers-format.d.ts +4 -0
  17. package/dist/eth/ethers-format.d.ts.map +1 -0
  18. package/dist/eth/ethers-format.js +20 -0
  19. package/dist/eth/ethers-format.js.map +1 -0
  20. package/dist/eth/provider.d.ts +3 -0
  21. package/dist/eth/provider.d.ts.map +1 -1
  22. package/dist/eth/provider.js +78 -1
  23. package/dist/eth/provider.js.map +1 -1
  24. package/dist/iota/builtin/0x2.d.ts +33 -0
  25. package/dist/iota/builtin/0x2.d.ts.map +1 -1
  26. package/dist/iota/builtin/0x2.js +169 -2
  27. package/dist/iota/builtin/0x2.js.map +1 -1
  28. package/dist/testing/test-processor-server.d.ts.map +1 -1
  29. package/dist/utils/dex-price.d.ts +1 -1
  30. package/dist/utils/dex-price.d.ts.map +1 -1
  31. package/dist/utils/dex-price.js +10 -17
  32. package/dist/utils/dex-price.js.map +1 -1
  33. package/package.json +9 -10
  34. package/src/aptos/abis/0x1.json +1703 -536
  35. package/src/aptos/abis/0x3.json +15 -15
  36. package/src/aptos/abis/0x4.json +12 -12
  37. package/src/aptos/builtin/0x1.ts +398 -54
  38. package/src/aptos/builtin/0x3.ts +1 -1
  39. package/src/aptos/builtin/0x4.ts +1 -1
  40. package/src/eth/context.ts +2 -7
  41. package/src/eth/eth.ts +142 -16
  42. package/src/eth/ethers-format.ts +32 -0
  43. package/src/eth/provider.ts +83 -1
  44. package/src/iota/abis/0x2.json +263 -0
  45. package/src/iota/builtin/0x2.ts +257 -1
  46. package/src/utils/dex-price.ts +14 -26
  47. package/assets/chainlink-oracles-sepolia.csv +0 -19
  48. package/assets/chainlink-oracles.csv +0 -217
@@ -19,17 +19,6 @@
19
19
  "bool"
20
20
  ]
21
21
  },
22
- {
23
- "name": "empty",
24
- "visibility": "public",
25
- "is_entry": false,
26
- "is_view": false,
27
- "generic_type_params": [],
28
- "params": [],
29
- "return": [
30
- "0x1::acl::ACL"
31
- ]
32
- },
33
22
  {
34
23
  "name": "remove",
35
24
  "visibility": "public",
@@ -42,6 +31,17 @@
42
31
  ],
43
32
  "return": []
44
33
  },
34
+ {
35
+ "name": "empty",
36
+ "visibility": "public",
37
+ "is_entry": false,
38
+ "is_view": false,
39
+ "generic_type_params": [],
40
+ "params": [],
41
+ "return": [
42
+ "0x1::acl::ACL"
43
+ ]
44
+ },
45
45
  {
46
46
  "name": "add",
47
47
  "visibility": "public",
@@ -423,6 +423,30 @@
423
423
  "0x1::option::Option<0x1::dkg::DKGSessionState>"
424
424
  ]
425
425
  },
426
+ {
427
+ "name": "is_session_started",
428
+ "visibility": "public",
429
+ "is_entry": false,
430
+ "is_view": false,
431
+ "generic_type_params": [],
432
+ "params": [
433
+ "u64"
434
+ ],
435
+ "return": [
436
+ "bool"
437
+ ]
438
+ },
439
+ {
440
+ "name": "last_completed_session",
441
+ "visibility": "public",
442
+ "is_entry": false,
443
+ "is_view": false,
444
+ "generic_type_params": [],
445
+ "params": [],
446
+ "return": [
447
+ "0x1::option::Option<0x1::dkg::DKGSessionState>"
448
+ ]
449
+ },
426
450
  {
427
451
  "name": "session_dealer_epoch",
428
452
  "visibility": "public",
@@ -1019,6 +1043,21 @@
1019
1043
  ],
1020
1044
  "return": []
1021
1045
  },
1046
+ {
1047
+ "name": "name",
1048
+ "visibility": "public",
1049
+ "is_entry": false,
1050
+ "is_view": true,
1051
+ "generic_type_params": [
1052
+ {
1053
+ "constraints": []
1054
+ }
1055
+ ],
1056
+ "params": [],
1057
+ "return": [
1058
+ "0x1::string::String"
1059
+ ]
1060
+ },
1022
1061
  {
1023
1062
  "name": "transfer",
1024
1063
  "visibility": "public",
@@ -1036,21 +1075,6 @@
1036
1075
  ],
1037
1076
  "return": []
1038
1077
  },
1039
- {
1040
- "name": "name",
1041
- "visibility": "public",
1042
- "is_entry": false,
1043
- "is_view": true,
1044
- "generic_type_params": [
1045
- {
1046
- "constraints": []
1047
- }
1048
- ],
1049
- "params": [],
1050
- "return": [
1051
- "0x1::string::String"
1052
- ]
1053
- },
1054
1078
  {
1055
1079
  "name": "symbol",
1056
1080
  "visibility": "public",
@@ -2565,6 +2589,19 @@
2565
2589
  "0x1::jwks::JWK"
2566
2590
  ]
2567
2591
  },
2592
+ {
2593
+ "name": "initialize_with_defaults",
2594
+ "visibility": "public",
2595
+ "is_entry": false,
2596
+ "is_view": false,
2597
+ "generic_type_params": [],
2598
+ "params": [
2599
+ "&signer",
2600
+ "vector<0x1::jwks::OIDCProvider>",
2601
+ "vector<0x1::jwks::Patch>"
2602
+ ],
2603
+ "return": []
2604
+ },
2568
2605
  {
2569
2606
  "name": "new_patch_remove_all",
2570
2607
  "visibility": "public",
@@ -4071,6 +4108,19 @@
4071
4108
  "vector<u64>"
4072
4109
  ]
4073
4110
  },
4111
+ {
4112
+ "name": "get_pool_address_for_owner",
4113
+ "visibility": "public",
4114
+ "is_entry": false,
4115
+ "is_view": true,
4116
+ "generic_type_params": [],
4117
+ "params": [
4118
+ "address"
4119
+ ],
4120
+ "return": [
4121
+ "address"
4122
+ ]
4123
+ },
4074
4124
  {
4075
4125
  "name": "get_remaining_lockup_secs",
4076
4126
  "visibility": "public",
@@ -4263,6 +4313,30 @@
4263
4313
  "vector<0x1::validator_consensus_info::ValidatorConsensusInfo>"
4264
4314
  ]
4265
4315
  },
4316
+ {
4317
+ "name": "next_validator_consensus_infos_v2",
4318
+ "visibility": "friend",
4319
+ "is_entry": false,
4320
+ "is_view": false,
4321
+ "generic_type_params": [],
4322
+ "params": [],
4323
+ "return": [
4324
+ "0x1::stake::ValidatorSet"
4325
+ ]
4326
+ },
4327
+ {
4328
+ "name": "owner_cap_exists",
4329
+ "visibility": "public",
4330
+ "is_entry": false,
4331
+ "is_view": true,
4332
+ "generic_type_params": [],
4333
+ "params": [
4334
+ "address"
4335
+ ],
4336
+ "return": [
4337
+ "bool"
4338
+ ]
4339
+ },
4266
4340
  {
4267
4341
  "name": "reactivate_stake",
4268
4342
  "visibility": "public",
@@ -4473,6 +4547,19 @@
4473
4547
  ],
4474
4548
  "return": []
4475
4549
  },
4550
+ {
4551
+ "name": "validator_consensus_infos_from_validator_set",
4552
+ "visibility": "friend",
4553
+ "is_entry": false,
4554
+ "is_view": false,
4555
+ "generic_type_params": [],
4556
+ "params": [
4557
+ "&0x1::stake::ValidatorSet"
4558
+ ],
4559
+ "return": [
4560
+ "vector<0x1::validator_consensus_info::ValidatorConsensusInfo>"
4561
+ ]
4562
+ },
4476
4563
  {
4477
4564
  "name": "withdraw_with_cap",
4478
4565
  "visibility": "public",
@@ -4815,6 +4902,27 @@
4815
4902
  ],
4816
4903
  "variants": []
4817
4904
  },
4905
+ {
4906
+ "name": "PrecomputedValidatorSet",
4907
+ "is_native": false,
4908
+ "is_event": false,
4909
+ "is_enum": false,
4910
+ "abilities": [
4911
+ "key"
4912
+ ],
4913
+ "generic_type_params": [],
4914
+ "fields": [
4915
+ {
4916
+ "name": "validator_set",
4917
+ "type": "0x1::stake::ValidatorSet"
4918
+ },
4919
+ {
4920
+ "name": "is_liveness_fallback",
4921
+ "type": "bool"
4922
+ }
4923
+ ],
4924
+ "variants": []
4925
+ },
4818
4926
  {
4819
4927
  "name": "ReactivateStake",
4820
4928
  "is_native": false,
@@ -5483,7 +5591,7 @@
5483
5591
  ]
5484
5592
  },
5485
5593
  {
5486
- "name": "new",
5594
+ "name": "remove",
5487
5595
  "visibility": "public",
5488
5596
  "is_entry": false,
5489
5597
  "is_view": false,
@@ -5495,18 +5603,19 @@
5495
5603
  ]
5496
5604
  },
5497
5605
  {
5498
- "constraints": [
5499
- "store"
5500
- ]
5606
+ "constraints": []
5501
5607
  }
5502
5608
  ],
5503
- "params": [],
5609
+ "params": [
5610
+ "&mut 0x1::table::Table<T0, T1>",
5611
+ "T0"
5612
+ ],
5504
5613
  "return": [
5505
- "0x1::table::Table<T0, T1>"
5614
+ "T1"
5506
5615
  ]
5507
5616
  },
5508
5617
  {
5509
- "name": "borrow",
5618
+ "name": "new",
5510
5619
  "visibility": "public",
5511
5620
  "is_entry": false,
5512
5621
  "is_view": false,
@@ -5518,19 +5627,18 @@
5518
5627
  ]
5519
5628
  },
5520
5629
  {
5521
- "constraints": []
5630
+ "constraints": [
5631
+ "store"
5632
+ ]
5522
5633
  }
5523
5634
  ],
5524
- "params": [
5525
- "&0x1::table::Table<T0, T1>",
5526
- "T0"
5527
- ],
5635
+ "params": [],
5528
5636
  "return": [
5529
- "&T1"
5637
+ "0x1::table::Table<T0, T1>"
5530
5638
  ]
5531
5639
  },
5532
5640
  {
5533
- "name": "borrow_mut",
5641
+ "name": "borrow",
5534
5642
  "visibility": "public",
5535
5643
  "is_entry": false,
5536
5644
  "is_view": false,
@@ -5546,15 +5654,15 @@
5546
5654
  }
5547
5655
  ],
5548
5656
  "params": [
5549
- "&mut 0x1::table::Table<T0, T1>",
5657
+ "&0x1::table::Table<T0, T1>",
5550
5658
  "T0"
5551
5659
  ],
5552
5660
  "return": [
5553
- "&mut T1"
5661
+ "&T1"
5554
5662
  ]
5555
5663
  },
5556
5664
  {
5557
- "name": "remove",
5665
+ "name": "borrow_mut",
5558
5666
  "visibility": "public",
5559
5667
  "is_entry": false,
5560
5668
  "is_view": false,
@@ -5574,7 +5682,7 @@
5574
5682
  "T0"
5575
5683
  ],
5576
5684
  "return": [
5577
- "T1"
5685
+ "&mut T1"
5578
5686
  ]
5579
5687
  },
5580
5688
  {
@@ -6113,6 +6221,20 @@
6113
6221
  "0x1::object::ConstructorRef"
6114
6222
  ]
6115
6223
  },
6224
+ {
6225
+ "name": "create_named_unowned_onchain_signer",
6226
+ "visibility": "public",
6227
+ "is_entry": false,
6228
+ "is_view": false,
6229
+ "generic_type_params": [],
6230
+ "params": [
6231
+ "&signer",
6232
+ "vector<u8>"
6233
+ ],
6234
+ "return": [
6235
+ "0x1::object::ExtendRef"
6236
+ ]
6237
+ },
6116
6238
  {
6117
6239
  "name": "create_object",
6118
6240
  "visibility": "public",
@@ -6212,6 +6334,17 @@
6212
6334
  "address"
6213
6335
  ]
6214
6336
  },
6337
+ {
6338
+ "name": "create_unique_onchain_signer",
6339
+ "visibility": "public",
6340
+ "is_entry": false,
6341
+ "is_view": false,
6342
+ "generic_type_params": [],
6343
+ "params": [],
6344
+ "return": [
6345
+ "0x1::object::ExtendRef"
6346
+ ]
6347
+ },
6215
6348
  {
6216
6349
  "name": "create_user_derived_object",
6217
6350
  "visibility": "friend",
@@ -6640,6 +6773,18 @@
6640
6773
  ],
6641
6774
  "return": []
6642
6775
  },
6776
+ {
6777
+ "name": "transfer_with_constructor_ref",
6778
+ "visibility": "public",
6779
+ "is_entry": false,
6780
+ "is_view": false,
6781
+ "generic_type_params": [],
6782
+ "params": [
6783
+ "&0x1::object::ConstructorRef",
6784
+ "address"
6785
+ ],
6786
+ "return": []
6787
+ },
6643
6788
  {
6644
6789
  "name": "transfer_with_ref",
6645
6790
  "visibility": "public",
@@ -7736,6 +7881,24 @@
7736
7881
  "vector<u64>"
7737
7882
  ]
7738
7883
  },
7884
+ {
7885
+ "name": "remove",
7886
+ "visibility": "public",
7887
+ "is_entry": false,
7888
+ "is_view": false,
7889
+ "generic_type_params": [
7890
+ {
7891
+ "constraints": []
7892
+ }
7893
+ ],
7894
+ "params": [
7895
+ "&mut vector<T0>",
7896
+ "u64"
7897
+ ],
7898
+ "return": [
7899
+ "T0"
7900
+ ]
7901
+ },
7739
7902
  {
7740
7903
  "name": "replace",
7741
7904
  "visibility": "public",
@@ -8006,24 +8169,6 @@
8006
8169
  "vector<u64>"
8007
8170
  ]
8008
8171
  },
8009
- {
8010
- "name": "remove",
8011
- "visibility": "public",
8012
- "is_entry": false,
8013
- "is_view": false,
8014
- "generic_type_params": [
8015
- {
8016
- "constraints": []
8017
- }
8018
- ],
8019
- "params": [
8020
- "&mut vector<T0>",
8021
- "u64"
8022
- ],
8023
- "return": [
8024
- "T0"
8025
- ]
8026
- },
8027
8172
  {
8028
8173
  "name": "remove_value",
8029
8174
  "visibility": "public",
@@ -13552,6 +13697,17 @@
13552
13697
  "u64"
13553
13698
  ]
13554
13699
  },
13700
+ {
13701
+ "name": "get_transaction_limits_feature",
13702
+ "visibility": "public",
13703
+ "is_entry": false,
13704
+ "is_view": false,
13705
+ "generic_type_params": [],
13706
+ "params": [],
13707
+ "return": [
13708
+ "u64"
13709
+ ]
13710
+ },
13555
13711
  {
13556
13712
  "name": "get_transaction_simulation_enhancement_feature",
13557
13713
  "visibility": "public",
@@ -13741,6 +13897,28 @@
13741
13897
  "bool"
13742
13898
  ]
13743
13899
  },
13900
+ {
13901
+ "name": "is_storage_slot_natives_enabled",
13902
+ "visibility": "public",
13903
+ "is_entry": false,
13904
+ "is_view": false,
13905
+ "generic_type_params": [],
13906
+ "params": [],
13907
+ "return": [
13908
+ "bool"
13909
+ ]
13910
+ },
13911
+ {
13912
+ "name": "is_transaction_limits_enabled",
13913
+ "visibility": "public",
13914
+ "is_entry": false,
13915
+ "is_view": false,
13916
+ "generic_type_params": [],
13917
+ "params": [],
13918
+ "return": [
13919
+ "bool"
13920
+ ]
13921
+ },
13744
13922
  {
13745
13923
  "name": "jwk_consensus_enabled",
13746
13924
  "visibility": "public",
@@ -15815,6 +15993,24 @@
15815
15993
  "u64"
15816
15994
  ]
15817
15995
  },
15996
+ {
15997
+ "name": "remove",
15998
+ "visibility": "public",
15999
+ "is_entry": false,
16000
+ "is_view": false,
16001
+ "generic_type_params": [
16002
+ {
16003
+ "constraints": []
16004
+ }
16005
+ ],
16006
+ "params": [
16007
+ "&mut 0x1::big_vector::BigVector<T0>",
16008
+ "u64"
16009
+ ],
16010
+ "return": [
16011
+ "T0"
16012
+ ]
16013
+ },
15818
16014
  {
15819
16015
  "name": "swap",
15820
16016
  "visibility": "public",
@@ -16006,24 +16202,6 @@
16006
16202
  ],
16007
16203
  "return": []
16008
16204
  },
16009
- {
16010
- "name": "remove",
16011
- "visibility": "public",
16012
- "is_entry": false,
16013
- "is_view": false,
16014
- "generic_type_params": [
16015
- {
16016
- "constraints": []
16017
- }
16018
- ],
16019
- "params": [
16020
- "&mut 0x1::big_vector::BigVector<T0>",
16021
- "u64"
16022
- ],
16023
- "return": [
16024
- "T0"
16025
- ]
16026
- },
16027
16205
  {
16028
16206
  "name": "reverse",
16029
16207
  "visibility": "public",
@@ -16528,6 +16706,30 @@
16528
16706
  "0x1::option::Option<0x1::chunky_dkg::ChunkyDKGSessionState>"
16529
16707
  ]
16530
16708
  },
16709
+ {
16710
+ "name": "is_session_started",
16711
+ "visibility": "public",
16712
+ "is_entry": false,
16713
+ "is_view": false,
16714
+ "generic_type_params": [],
16715
+ "params": [
16716
+ "u64"
16717
+ ],
16718
+ "return": [
16719
+ "bool"
16720
+ ]
16721
+ },
16722
+ {
16723
+ "name": "last_completed_session",
16724
+ "visibility": "public",
16725
+ "is_entry": false,
16726
+ "is_view": false,
16727
+ "generic_type_params": [],
16728
+ "params": [],
16729
+ "return": [
16730
+ "0x1::option::Option<0x1::chunky_dkg::ChunkyDKGSessionState>"
16731
+ ]
16732
+ },
16531
16733
  {
16532
16734
  "name": "session_dealer_epoch",
16533
16735
  "visibility": "public",
@@ -16551,6 +16753,19 @@
16551
16753
  "&signer"
16552
16754
  ],
16553
16755
  "return": []
16756
+ },
16757
+ {
16758
+ "name": "session_start_time",
16759
+ "visibility": "public",
16760
+ "is_entry": false,
16761
+ "is_view": false,
16762
+ "generic_type_params": [],
16763
+ "params": [
16764
+ "&0x1::chunky_dkg::ChunkyDKGSessionState"
16765
+ ],
16766
+ "return": [
16767
+ "u64"
16768
+ ]
16554
16769
  }
16555
16770
  ],
16556
16771
  "structs": [
@@ -17238,7 +17453,7 @@
17238
17453
  "friends": [],
17239
17454
  "exposed_functions": [
17240
17455
  {
17241
- "name": "new",
17456
+ "name": "remove",
17242
17457
  "visibility": "public",
17243
17458
  "is_entry": false,
17244
17459
  "is_view": false,
@@ -17254,13 +17469,17 @@
17254
17469
  ]
17255
17470
  }
17256
17471
  ],
17257
- "params": [],
17472
+ "params": [
17473
+ "&mut 0x1::simple_map::SimpleMap<T0, T1>",
17474
+ "&T0"
17475
+ ],
17258
17476
  "return": [
17259
- "0x1::simple_map::SimpleMap<T0, T1>"
17477
+ "T0",
17478
+ "T1"
17260
17479
  ]
17261
17480
  },
17262
17481
  {
17263
- "name": "borrow",
17482
+ "name": "new",
17264
17483
  "visibility": "public",
17265
17484
  "is_entry": false,
17266
17485
  "is_view": false,
@@ -17276,16 +17495,13 @@
17276
17495
  ]
17277
17496
  }
17278
17497
  ],
17279
- "params": [
17280
- "&0x1::simple_map::SimpleMap<T0, T1>",
17281
- "&T0"
17282
- ],
17498
+ "params": [],
17283
17499
  "return": [
17284
- "&T1"
17500
+ "0x1::simple_map::SimpleMap<T0, T1>"
17285
17501
  ]
17286
17502
  },
17287
17503
  {
17288
- "name": "borrow_mut",
17504
+ "name": "borrow",
17289
17505
  "visibility": "public",
17290
17506
  "is_entry": false,
17291
17507
  "is_view": false,
@@ -17302,15 +17518,15 @@
17302
17518
  }
17303
17519
  ],
17304
17520
  "params": [
17305
- "&mut 0x1::simple_map::SimpleMap<T0, T1>",
17521
+ "&0x1::simple_map::SimpleMap<T0, T1>",
17306
17522
  "&T0"
17307
17523
  ],
17308
17524
  "return": [
17309
- "&mut T1"
17525
+ "&T1"
17310
17526
  ]
17311
17527
  },
17312
17528
  {
17313
- "name": "destroy_empty",
17529
+ "name": "borrow_mut",
17314
17530
  "visibility": "public",
17315
17531
  "is_entry": false,
17316
17532
  "is_view": false,
@@ -17327,12 +17543,15 @@
17327
17543
  }
17328
17544
  ],
17329
17545
  "params": [
17330
- "0x1::simple_map::SimpleMap<T0, T1>"
17546
+ "&mut 0x1::simple_map::SimpleMap<T0, T1>",
17547
+ "&T0"
17331
17548
  ],
17332
- "return": []
17549
+ "return": [
17550
+ "&mut T1"
17551
+ ]
17333
17552
  },
17334
17553
  {
17335
- "name": "length",
17554
+ "name": "destroy_empty",
17336
17555
  "visibility": "public",
17337
17556
  "is_entry": false,
17338
17557
  "is_view": false,
@@ -17349,14 +17568,12 @@
17349
17568
  }
17350
17569
  ],
17351
17570
  "params": [
17352
- "&0x1::simple_map::SimpleMap<T0, T1>"
17571
+ "0x1::simple_map::SimpleMap<T0, T1>"
17353
17572
  ],
17354
- "return": [
17355
- "u64"
17356
- ]
17573
+ "return": []
17357
17574
  },
17358
17575
  {
17359
- "name": "remove",
17576
+ "name": "length",
17360
17577
  "visibility": "public",
17361
17578
  "is_entry": false,
17362
17579
  "is_view": false,
@@ -17373,12 +17590,10 @@
17373
17590
  }
17374
17591
  ],
17375
17592
  "params": [
17376
- "&mut 0x1::simple_map::SimpleMap<T0, T1>",
17377
- "&T0"
17593
+ "&0x1::simple_map::SimpleMap<T0, T1>"
17378
17594
  ],
17379
17595
  "return": [
17380
- "T0",
17381
- "T1"
17596
+ "u64"
17382
17597
  ]
17383
17598
  },
17384
17599
  {
@@ -17823,6 +18038,29 @@
17823
18038
  "bool"
17824
18039
  ]
17825
18040
  },
18041
+ {
18042
+ "name": "remove",
18043
+ "visibility": "public",
18044
+ "is_entry": false,
18045
+ "is_view": false,
18046
+ "generic_type_params": [
18047
+ {
18048
+ "constraints": [
18049
+ "drop"
18050
+ ]
18051
+ },
18052
+ {
18053
+ "constraints": []
18054
+ }
18055
+ ],
18056
+ "params": [
18057
+ "&mut 0x1::ordered_map::OrderedMap<T0, T1>",
18058
+ "&T0"
18059
+ ],
18060
+ "return": [
18061
+ "T1"
18062
+ ]
18063
+ },
17826
18064
  {
17827
18065
  "name": "new",
17828
18066
  "visibility": "public",
@@ -17985,29 +18223,6 @@
17985
18223
  "T1"
17986
18224
  ]
17987
18225
  },
17988
- {
17989
- "name": "remove",
17990
- "visibility": "public",
17991
- "is_entry": false,
17992
- "is_view": false,
17993
- "generic_type_params": [
17994
- {
17995
- "constraints": [
17996
- "drop"
17997
- ]
17998
- },
17999
- {
18000
- "constraints": []
18001
- }
18002
- ],
18003
- "params": [
18004
- "&mut 0x1::ordered_map::OrderedMap<T0, T1>",
18005
- "&T0"
18006
- ],
18007
- "return": [
18008
- "T1"
18009
- ]
18010
- },
18011
18226
  {
18012
18227
  "name": "trim",
18013
18228
  "visibility": "public",
@@ -18837,6 +19052,30 @@
18837
19052
  "bool"
18838
19053
  ]
18839
19054
  },
19055
+ {
19056
+ "name": "remove",
19057
+ "visibility": "public",
19058
+ "is_entry": false,
19059
+ "is_view": false,
19060
+ "generic_type_params": [
19061
+ {
19062
+ "constraints": [
19063
+ "copy",
19064
+ "drop"
19065
+ ]
19066
+ },
19067
+ {
19068
+ "constraints": []
19069
+ }
19070
+ ],
19071
+ "params": [
19072
+ "&mut 0x1::smart_table::SmartTable<T0, T1>",
19073
+ "T0"
19074
+ ],
19075
+ "return": [
19076
+ "T1"
19077
+ ]
19078
+ },
18840
19079
  {
18841
19080
  "name": "new",
18842
19081
  "visibility": "public",
@@ -18967,30 +19206,6 @@
18967
19206
  "u64"
18968
19207
  ]
18969
19208
  },
18970
- {
18971
- "name": "remove",
18972
- "visibility": "public",
18973
- "is_entry": false,
18974
- "is_view": false,
18975
- "generic_type_params": [
18976
- {
18977
- "constraints": [
18978
- "copy",
18979
- "drop"
18980
- ]
18981
- },
18982
- {
18983
- "constraints": []
18984
- }
18985
- ],
18986
- "params": [
18987
- "&mut 0x1::smart_table::SmartTable<T0, T1>",
18988
- "T0"
18989
- ],
18990
- "return": [
18991
- "T1"
18992
- ]
18993
- },
18994
19209
  {
18995
19210
  "name": "add",
18996
19211
  "visibility": "public",
@@ -21257,6 +21472,24 @@
21257
21472
  "u64"
21258
21473
  ]
21259
21474
  },
21475
+ {
21476
+ "name": "remove",
21477
+ "visibility": "public",
21478
+ "is_entry": false,
21479
+ "is_view": false,
21480
+ "generic_type_params": [
21481
+ {
21482
+ "constraints": []
21483
+ }
21484
+ ],
21485
+ "params": [
21486
+ "&mut 0x1::smart_vector::SmartVector<T0>",
21487
+ "u64"
21488
+ ],
21489
+ "return": [
21490
+ "T0"
21491
+ ]
21492
+ },
21260
21493
  {
21261
21494
  "name": "new",
21262
21495
  "visibility": "public",
@@ -21465,24 +21698,6 @@
21465
21698
  ],
21466
21699
  "return": []
21467
21700
  },
21468
- {
21469
- "name": "remove",
21470
- "visibility": "public",
21471
- "is_entry": false,
21472
- "is_view": false,
21473
- "generic_type_params": [
21474
- {
21475
- "constraints": []
21476
- }
21477
- ],
21478
- "params": [
21479
- "&mut 0x1::smart_vector::SmartVector<T0>",
21480
- "u64"
21481
- ],
21482
- "return": [
21483
- "T0"
21484
- ]
21485
- },
21486
21701
  {
21487
21702
  "name": "reverse",
21488
21703
  "visibility": "public",
@@ -21650,6 +21865,155 @@
21650
21865
  ]
21651
21866
  }
21652
21867
  },
21868
+ {
21869
+ "abi": {
21870
+ "address": "0x1",
21871
+ "name": "storage_slot",
21872
+ "friends": [],
21873
+ "exposed_functions": [
21874
+ {
21875
+ "name": "new",
21876
+ "visibility": "public",
21877
+ "is_entry": false,
21878
+ "is_view": false,
21879
+ "generic_type_params": [
21880
+ {
21881
+ "constraints": [
21882
+ "store"
21883
+ ]
21884
+ }
21885
+ ],
21886
+ "params": [
21887
+ "T0"
21888
+ ],
21889
+ "return": [
21890
+ "0x1::storage_slot::StorageSlot<T0>"
21891
+ ]
21892
+ },
21893
+ {
21894
+ "name": "borrow",
21895
+ "visibility": "public",
21896
+ "is_entry": false,
21897
+ "is_view": false,
21898
+ "generic_type_params": [
21899
+ {
21900
+ "constraints": [
21901
+ "store"
21902
+ ]
21903
+ }
21904
+ ],
21905
+ "params": [
21906
+ "&0x1::storage_slot::StorageSlot<T0>"
21907
+ ],
21908
+ "return": [
21909
+ "&T0"
21910
+ ]
21911
+ },
21912
+ {
21913
+ "name": "borrow_mut",
21914
+ "visibility": "public",
21915
+ "is_entry": false,
21916
+ "is_view": false,
21917
+ "generic_type_params": [
21918
+ {
21919
+ "constraints": [
21920
+ "store"
21921
+ ]
21922
+ }
21923
+ ],
21924
+ "params": [
21925
+ "&mut 0x1::storage_slot::StorageSlot<T0>"
21926
+ ],
21927
+ "return": [
21928
+ "&mut T0"
21929
+ ]
21930
+ },
21931
+ {
21932
+ "name": "destroy",
21933
+ "visibility": "public",
21934
+ "is_entry": false,
21935
+ "is_view": false,
21936
+ "generic_type_params": [
21937
+ {
21938
+ "constraints": [
21939
+ "store"
21940
+ ]
21941
+ }
21942
+ ],
21943
+ "params": [
21944
+ "0x1::storage_slot::StorageSlot<T0>"
21945
+ ],
21946
+ "return": [
21947
+ "T0"
21948
+ ]
21949
+ },
21950
+ {
21951
+ "name": "copy_storage_slot",
21952
+ "visibility": "public",
21953
+ "is_entry": false,
21954
+ "is_view": false,
21955
+ "generic_type_params": [
21956
+ {
21957
+ "constraints": [
21958
+ "copy",
21959
+ "store"
21960
+ ]
21961
+ }
21962
+ ],
21963
+ "params": [
21964
+ "&0x1::storage_slot::StorageSlot<T0>"
21965
+ ],
21966
+ "return": [
21967
+ "0x1::storage_slot::StorageSlot<T0>"
21968
+ ]
21969
+ }
21970
+ ],
21971
+ "structs": [
21972
+ {
21973
+ "name": "StorageSlot",
21974
+ "is_native": false,
21975
+ "is_event": false,
21976
+ "is_enum": false,
21977
+ "abilities": [
21978
+ "store"
21979
+ ],
21980
+ "generic_type_params": [
21981
+ {
21982
+ "constraints": []
21983
+ }
21984
+ ],
21985
+ "fields": [
21986
+ {
21987
+ "name": "addr",
21988
+ "type": "address"
21989
+ }
21990
+ ],
21991
+ "variants": []
21992
+ },
21993
+ {
21994
+ "name": "StorageSlotResource",
21995
+ "is_native": false,
21996
+ "is_event": false,
21997
+ "is_enum": false,
21998
+ "abilities": [
21999
+ "key"
22000
+ ],
22001
+ "generic_type_params": [
22002
+ {
22003
+ "constraints": []
22004
+ }
22005
+ ],
22006
+ "fields": [
22007
+ {
22008
+ "name": "val",
22009
+ "type": "T0"
22010
+ }
22011
+ ],
22012
+ "variants": []
22013
+ }
22014
+ ]
22015
+ }
22016
+ },
21653
22017
  {
21654
22018
  "abi": {
21655
22019
  "address": "0x1",
@@ -22911,8 +23275,10 @@
22911
23275
  "0x1::jwk_consensus_config",
22912
23276
  "0x1::gas_schedule",
22913
23277
  "0x1::execution_config",
23278
+ "0x1::epoch_timeout_config",
22914
23279
  "0x1::decryption",
22915
23280
  "0x1::consensus_config",
23281
+ "0x1::chunky_dkg_config_seqnum",
22916
23282
  "0x1::chunky_dkg_config"
22917
23283
  ],
22918
23284
  "exposed_functions": [
@@ -23030,6 +23396,8 @@
23030
23396
  "0x1::fungible_asset",
23031
23397
  "0x1::coin",
23032
23398
  "0x1::aptos_account",
23399
+ "0x1::stake",
23400
+ "0x1::reconfiguration_with_dkg",
23033
23401
  "0x1::transaction_validation",
23034
23402
  "0x1::genesis",
23035
23403
  "0x1::multisig_account"
@@ -24753,6 +25121,25 @@
24753
25121
  ],
24754
25122
  "return": []
24755
25123
  },
25124
+ {
25125
+ "name": "name",
25126
+ "visibility": "public",
25127
+ "is_entry": false,
25128
+ "is_view": true,
25129
+ "generic_type_params": [
25130
+ {
25131
+ "constraints": [
25132
+ "key"
25133
+ ]
25134
+ }
25135
+ ],
25136
+ "params": [
25137
+ "0x1::object::Object<T0>"
25138
+ ],
25139
+ "return": [
25140
+ "0x1::string::String"
25141
+ ]
25142
+ },
24756
25143
  {
24757
25144
  "name": "generate_transfer_ref",
24758
25145
  "visibility": "public",
@@ -24855,25 +25242,6 @@
24855
25242
  "0x1::object::Object<0x1::fungible_asset::Metadata>"
24856
25243
  ]
24857
25244
  },
24858
- {
24859
- "name": "name",
24860
- "visibility": "public",
24861
- "is_entry": false,
24862
- "is_view": true,
24863
- "generic_type_params": [
24864
- {
24865
- "constraints": [
24866
- "key"
24867
- ]
24868
- }
24869
- ],
24870
- "params": [
24871
- "0x1::object::Object<T0>"
24872
- ],
24873
- "return": [
24874
- "0x1::string::String"
24875
- ]
24876
- },
24877
25245
  {
24878
25246
  "name": "symbol",
24879
25247
  "visibility": "public",
@@ -26804,6 +27172,33 @@
26804
27172
  "bool"
26805
27173
  ]
26806
27174
  },
27175
+ {
27176
+ "name": "remove",
27177
+ "visibility": "public",
27178
+ "is_entry": false,
27179
+ "is_view": false,
27180
+ "generic_type_params": [
27181
+ {
27182
+ "constraints": [
27183
+ "copy",
27184
+ "drop",
27185
+ "store"
27186
+ ]
27187
+ },
27188
+ {
27189
+ "constraints": [
27190
+ "store"
27191
+ ]
27192
+ }
27193
+ ],
27194
+ "params": [
27195
+ "&mut 0x1::big_ordered_map::BigOrderedMap<T0, T1>",
27196
+ "&T0"
27197
+ ],
27198
+ "return": [
27199
+ "T1"
27200
+ ]
27201
+ },
26807
27202
  {
26808
27203
  "name": "new",
26809
27204
  "visibility": "public",
@@ -26953,33 +27348,6 @@
26953
27348
  "T1"
26954
27349
  ]
26955
27350
  },
26956
- {
26957
- "name": "remove",
26958
- "visibility": "public",
26959
- "is_entry": false,
26960
- "is_view": false,
26961
- "generic_type_params": [
26962
- {
26963
- "constraints": [
26964
- "copy",
26965
- "drop",
26966
- "store"
26967
- ]
26968
- },
26969
- {
26970
- "constraints": [
26971
- "store"
26972
- ]
26973
- }
26974
- ],
26975
- "params": [
26976
- "&mut 0x1::big_ordered_map::BigOrderedMap<T0, T1>",
26977
- "&T0"
26978
- ],
26979
- "return": [
26980
- "T1"
26981
- ]
26982
- },
26983
27351
  {
26984
27352
  "name": "add",
26985
27353
  "visibility": "public",
@@ -28304,6 +28672,19 @@
28304
28672
  "u64"
28305
28673
  ]
28306
28674
  },
28675
+ {
28676
+ "name": "owner_cap_exists",
28677
+ "visibility": "public",
28678
+ "is_entry": false,
28679
+ "is_view": true,
28680
+ "generic_type_params": [],
28681
+ "params": [
28682
+ "address"
28683
+ ],
28684
+ "return": [
28685
+ "bool"
28686
+ ]
28687
+ },
28307
28688
  {
28308
28689
  "name": "reactivate_stake",
28309
28690
  "visibility": "public",
@@ -28736,19 +29117,6 @@
28736
29117
  "u64"
28737
29118
  ]
28738
29119
  },
28739
- {
28740
- "name": "owner_cap_exists",
28741
- "visibility": "public",
28742
- "is_entry": false,
28743
- "is_view": true,
28744
- "generic_type_params": [],
28745
- "params": [
28746
- "address"
28747
- ],
28748
- "return": [
28749
- "bool"
28750
- ]
28751
- },
28752
29120
  {
28753
29121
  "name": "remove_delegator_from_allowlist",
28754
29122
  "visibility": "public",
@@ -30205,6 +30573,17 @@
30205
30573
  ],
30206
30574
  "return": []
30207
30575
  },
30576
+ {
30577
+ "name": "emit_fee_statement",
30578
+ "visibility": "friend",
30579
+ "is_entry": false,
30580
+ "is_view": false,
30581
+ "generic_type_params": [],
30582
+ "params": [
30583
+ "0x1::transaction_fee::FeeStatement"
30584
+ ],
30585
+ "return": []
30586
+ },
30208
30587
  {
30209
30588
  "name": "initialize_fee_collection_and_distribution",
30210
30589
  "visibility": "public",
@@ -30240,6 +30619,19 @@
30240
30619
  ],
30241
30620
  "return": []
30242
30621
  },
30622
+ {
30623
+ "name": "storage_fee_refund_octas",
30624
+ "visibility": "friend",
30625
+ "is_entry": false,
30626
+ "is_view": false,
30627
+ "generic_type_params": [],
30628
+ "params": [
30629
+ "&0x1::transaction_fee::FeeStatement"
30630
+ ],
30631
+ "return": [
30632
+ "u64"
30633
+ ]
30634
+ },
30243
30635
  {
30244
30636
  "name": "store_aptos_coin_burn_cap",
30245
30637
  "visibility": "friend",
@@ -34644,266 +35036,20 @@
34644
35036
  "return": [
34645
35037
  "0x1::chunky_dkg_config::ChunkyDKGConfig"
34646
35038
  ]
34647
- }
34648
- ],
34649
- "structs": [
34650
- {
34651
- "name": "ConfigOff",
34652
- "is_native": false,
34653
- "is_event": false,
34654
- "is_enum": false,
34655
- "abilities": [
34656
- "copy",
34657
- "drop",
34658
- "store"
34659
- ],
34660
- "generic_type_params": [],
34661
- "fields": [
34662
- {
34663
- "name": "dummy_field",
34664
- "type": "bool"
34665
- }
34666
- ],
34667
- "variants": []
34668
- },
34669
- {
34670
- "name": "ConfigV1",
34671
- "is_native": false,
34672
- "is_event": false,
34673
- "is_enum": false,
34674
- "abilities": [
34675
- "copy",
34676
- "drop",
34677
- "store"
34678
- ],
34679
- "generic_type_params": [],
34680
- "fields": [
34681
- {
34682
- "name": "secrecy_threshold",
34683
- "type": "0x1::fixed_point64::FixedPoint64"
34684
- },
34685
- {
34686
- "name": "reconstruction_threshold",
34687
- "type": "0x1::fixed_point64::FixedPoint64"
34688
- }
34689
- ],
34690
- "variants": []
34691
- },
34692
- {
34693
- "name": "ChunkyDKGConfig",
34694
- "is_native": false,
34695
- "is_event": false,
34696
- "is_enum": false,
34697
- "abilities": [
34698
- "copy",
34699
- "drop",
34700
- "store",
34701
- "key"
34702
- ],
34703
- "generic_type_params": [],
34704
- "fields": [
34705
- {
34706
- "name": "variant",
34707
- "type": "0x1::copyable_any::Any"
34708
- }
34709
- ],
34710
- "variants": []
34711
- }
34712
- ]
34713
- }
34714
- },
34715
- {
34716
- "abi": {
34717
- "address": "0x1",
34718
- "name": "federated_keyless",
34719
- "friends": [],
34720
- "exposed_functions": [
34721
- {
34722
- "name": "new",
34723
- "visibility": "public",
34724
- "is_entry": false,
34725
- "is_view": false,
34726
- "generic_type_params": [],
34727
- "params": [
34728
- "0x1::keyless::PublicKey",
34729
- "address"
34730
- ],
34731
- "return": [
34732
- "0x1::federated_keyless::PublicKey"
34733
- ]
34734
- },
34735
- {
34736
- "name": "deserialize_public_key",
34737
- "visibility": "public",
34738
- "is_entry": false,
34739
- "is_view": false,
34740
- "generic_type_params": [],
34741
- "params": [
34742
- "&mut 0x1::bcs_stream::BCSStream"
34743
- ],
34744
- "return": [
34745
- "0x1::federated_keyless::PublicKey"
34746
- ]
34747
- },
34748
- {
34749
- "name": "new_public_key_from_bytes",
34750
- "visibility": "public",
34751
- "is_entry": false,
34752
- "is_view": false,
34753
- "generic_type_params": [],
34754
- "params": [
34755
- "vector<u8>"
34756
- ],
34757
- "return": [
34758
- "0x1::federated_keyless::PublicKey"
34759
- ]
34760
- },
34761
- {
34762
- "name": "get_jwk_address",
34763
- "visibility": "friend",
34764
- "is_entry": false,
34765
- "is_view": false,
34766
- "generic_type_params": [],
34767
- "params": [
34768
- "&0x1::federated_keyless::PublicKey"
34769
- ],
34770
- "return": [
34771
- "address"
34772
- ]
34773
- },
34774
- {
34775
- "name": "get_keyless_public_key",
34776
- "visibility": "friend",
34777
- "is_entry": false,
34778
- "is_view": false,
34779
- "generic_type_params": [],
34780
- "params": [
34781
- "&0x1::federated_keyless::PublicKey"
34782
- ],
34783
- "return": [
34784
- "0x1::keyless::PublicKey"
34785
- ]
34786
- }
34787
- ],
34788
- "structs": [
34789
- {
34790
- "name": "PublicKey",
34791
- "is_native": false,
34792
- "is_event": false,
34793
- "is_enum": false,
34794
- "abilities": [
34795
- "copy",
34796
- "drop",
34797
- "store"
34798
- ],
34799
- "generic_type_params": [],
34800
- "fields": [
34801
- {
34802
- "name": "jwk_address",
34803
- "type": "address"
34804
- },
34805
- {
34806
- "name": "keyless_public_key",
34807
- "type": "0x1::keyless::PublicKey"
34808
- }
34809
- ],
34810
- "variants": []
34811
- }
34812
- ]
34813
- }
34814
- },
34815
- {
34816
- "abi": {
34817
- "address": "0x1",
34818
- "name": "randomness_config",
34819
- "friends": [
34820
- "0x1::reconfiguration_with_dkg"
34821
- ],
34822
- "exposed_functions": [
34823
- {
34824
- "name": "on_new_epoch",
34825
- "visibility": "friend",
34826
- "is_entry": false,
34827
- "is_view": false,
34828
- "generic_type_params": [],
34829
- "params": [
34830
- "&signer"
34831
- ],
34832
- "return": []
34833
35039
  },
34834
35040
  {
34835
- "name": "current",
34836
- "visibility": "public",
34837
- "is_entry": false,
34838
- "is_view": false,
34839
- "generic_type_params": [],
34840
- "params": [],
34841
- "return": [
34842
- "0x1::randomness_config::RandomnessConfig"
34843
- ]
34844
- },
34845
- {
34846
- "name": "initialize",
34847
- "visibility": "public",
34848
- "is_entry": false,
34849
- "is_view": false,
34850
- "generic_type_params": [],
34851
- "params": [
34852
- "&signer",
34853
- "0x1::randomness_config::RandomnessConfig"
34854
- ],
34855
- "return": []
34856
- },
34857
- {
34858
- "name": "set_for_next_epoch",
34859
- "visibility": "public",
34860
- "is_entry": false,
34861
- "is_view": false,
34862
- "generic_type_params": [],
34863
- "params": [
34864
- "&signer",
34865
- "0x1::randomness_config::RandomnessConfig"
34866
- ],
34867
- "return": []
34868
- },
34869
- {
34870
- "name": "enabled",
35041
+ "name": "grace_period_secs",
34871
35042
  "visibility": "public",
34872
35043
  "is_entry": false,
34873
35044
  "is_view": false,
34874
35045
  "generic_type_params": [],
34875
35046
  "params": [],
34876
35047
  "return": [
34877
- "bool"
34878
- ]
34879
- },
34880
- {
34881
- "name": "new_off",
34882
- "visibility": "public",
34883
- "is_entry": false,
34884
- "is_view": false,
34885
- "generic_type_params": [],
34886
- "params": [],
34887
- "return": [
34888
- "0x1::randomness_config::RandomnessConfig"
34889
- ]
34890
- },
34891
- {
34892
- "name": "new_v1",
34893
- "visibility": "public",
34894
- "is_entry": false,
34895
- "is_view": false,
34896
- "generic_type_params": [],
34897
- "params": [
34898
- "0x1::fixed_point64::FixedPoint64",
34899
- "0x1::fixed_point64::FixedPoint64"
34900
- ],
34901
- "return": [
34902
- "0x1::randomness_config::RandomnessConfig"
35048
+ "0x1::option::Option<u64>"
34903
35049
  ]
34904
35050
  },
34905
35051
  {
34906
- "name": "new_v2",
35052
+ "name": "new_shadow_v1",
34907
35053
  "visibility": "public",
34908
35054
  "is_entry": false,
34909
35055
  "is_view": false,
@@ -34911,10 +35057,309 @@
34911
35057
  "params": [
34912
35058
  "0x1::fixed_point64::FixedPoint64",
34913
35059
  "0x1::fixed_point64::FixedPoint64",
34914
- "0x1::fixed_point64::FixedPoint64"
35060
+ "u64"
34915
35061
  ],
34916
35062
  "return": [
34917
- "0x1::randomness_config::RandomnessConfig"
35063
+ "0x1::chunky_dkg_config::ChunkyDKGConfig"
35064
+ ]
35065
+ }
35066
+ ],
35067
+ "structs": [
35068
+ {
35069
+ "name": "ConfigOff",
35070
+ "is_native": false,
35071
+ "is_event": false,
35072
+ "is_enum": false,
35073
+ "abilities": [
35074
+ "copy",
35075
+ "drop",
35076
+ "store"
35077
+ ],
35078
+ "generic_type_params": [],
35079
+ "fields": [
35080
+ {
35081
+ "name": "dummy_field",
35082
+ "type": "bool"
35083
+ }
35084
+ ],
35085
+ "variants": []
35086
+ },
35087
+ {
35088
+ "name": "ConfigV1",
35089
+ "is_native": false,
35090
+ "is_event": false,
35091
+ "is_enum": false,
35092
+ "abilities": [
35093
+ "copy",
35094
+ "drop",
35095
+ "store"
35096
+ ],
35097
+ "generic_type_params": [],
35098
+ "fields": [
35099
+ {
35100
+ "name": "secrecy_threshold",
35101
+ "type": "0x1::fixed_point64::FixedPoint64"
35102
+ },
35103
+ {
35104
+ "name": "reconstruction_threshold",
35105
+ "type": "0x1::fixed_point64::FixedPoint64"
35106
+ }
35107
+ ],
35108
+ "variants": []
35109
+ },
35110
+ {
35111
+ "name": "ChunkyDKGConfig",
35112
+ "is_native": false,
35113
+ "is_event": false,
35114
+ "is_enum": false,
35115
+ "abilities": [
35116
+ "copy",
35117
+ "drop",
35118
+ "store",
35119
+ "key"
35120
+ ],
35121
+ "generic_type_params": [],
35122
+ "fields": [
35123
+ {
35124
+ "name": "variant",
35125
+ "type": "0x1::copyable_any::Any"
35126
+ }
35127
+ ],
35128
+ "variants": []
35129
+ },
35130
+ {
35131
+ "name": "ConfigShadowV1",
35132
+ "is_native": false,
35133
+ "is_event": false,
35134
+ "is_enum": false,
35135
+ "abilities": [
35136
+ "copy",
35137
+ "drop",
35138
+ "store"
35139
+ ],
35140
+ "generic_type_params": [],
35141
+ "fields": [
35142
+ {
35143
+ "name": "secrecy_threshold",
35144
+ "type": "0x1::fixed_point64::FixedPoint64"
35145
+ },
35146
+ {
35147
+ "name": "reconstruction_threshold",
35148
+ "type": "0x1::fixed_point64::FixedPoint64"
35149
+ },
35150
+ {
35151
+ "name": "grace_period_secs",
35152
+ "type": "u64"
35153
+ }
35154
+ ],
35155
+ "variants": []
35156
+ }
35157
+ ]
35158
+ }
35159
+ },
35160
+ {
35161
+ "abi": {
35162
+ "address": "0x1",
35163
+ "name": "federated_keyless",
35164
+ "friends": [],
35165
+ "exposed_functions": [
35166
+ {
35167
+ "name": "new",
35168
+ "visibility": "public",
35169
+ "is_entry": false,
35170
+ "is_view": false,
35171
+ "generic_type_params": [],
35172
+ "params": [
35173
+ "0x1::keyless::PublicKey",
35174
+ "address"
35175
+ ],
35176
+ "return": [
35177
+ "0x1::federated_keyless::PublicKey"
35178
+ ]
35179
+ },
35180
+ {
35181
+ "name": "deserialize_public_key",
35182
+ "visibility": "public",
35183
+ "is_entry": false,
35184
+ "is_view": false,
35185
+ "generic_type_params": [],
35186
+ "params": [
35187
+ "&mut 0x1::bcs_stream::BCSStream"
35188
+ ],
35189
+ "return": [
35190
+ "0x1::federated_keyless::PublicKey"
35191
+ ]
35192
+ },
35193
+ {
35194
+ "name": "new_public_key_from_bytes",
35195
+ "visibility": "public",
35196
+ "is_entry": false,
35197
+ "is_view": false,
35198
+ "generic_type_params": [],
35199
+ "params": [
35200
+ "vector<u8>"
35201
+ ],
35202
+ "return": [
35203
+ "0x1::federated_keyless::PublicKey"
35204
+ ]
35205
+ },
35206
+ {
35207
+ "name": "get_jwk_address",
35208
+ "visibility": "friend",
35209
+ "is_entry": false,
35210
+ "is_view": false,
35211
+ "generic_type_params": [],
35212
+ "params": [
35213
+ "&0x1::federated_keyless::PublicKey"
35214
+ ],
35215
+ "return": [
35216
+ "address"
35217
+ ]
35218
+ },
35219
+ {
35220
+ "name": "get_keyless_public_key",
35221
+ "visibility": "friend",
35222
+ "is_entry": false,
35223
+ "is_view": false,
35224
+ "generic_type_params": [],
35225
+ "params": [
35226
+ "&0x1::federated_keyless::PublicKey"
35227
+ ],
35228
+ "return": [
35229
+ "0x1::keyless::PublicKey"
35230
+ ]
35231
+ }
35232
+ ],
35233
+ "structs": [
35234
+ {
35235
+ "name": "PublicKey",
35236
+ "is_native": false,
35237
+ "is_event": false,
35238
+ "is_enum": false,
35239
+ "abilities": [
35240
+ "copy",
35241
+ "drop",
35242
+ "store"
35243
+ ],
35244
+ "generic_type_params": [],
35245
+ "fields": [
35246
+ {
35247
+ "name": "jwk_address",
35248
+ "type": "address"
35249
+ },
35250
+ {
35251
+ "name": "keyless_public_key",
35252
+ "type": "0x1::keyless::PublicKey"
35253
+ }
35254
+ ],
35255
+ "variants": []
35256
+ }
35257
+ ]
35258
+ }
35259
+ },
35260
+ {
35261
+ "abi": {
35262
+ "address": "0x1",
35263
+ "name": "randomness_config",
35264
+ "friends": [
35265
+ "0x1::reconfiguration_with_dkg"
35266
+ ],
35267
+ "exposed_functions": [
35268
+ {
35269
+ "name": "on_new_epoch",
35270
+ "visibility": "friend",
35271
+ "is_entry": false,
35272
+ "is_view": false,
35273
+ "generic_type_params": [],
35274
+ "params": [
35275
+ "&signer"
35276
+ ],
35277
+ "return": []
35278
+ },
35279
+ {
35280
+ "name": "current",
35281
+ "visibility": "public",
35282
+ "is_entry": false,
35283
+ "is_view": false,
35284
+ "generic_type_params": [],
35285
+ "params": [],
35286
+ "return": [
35287
+ "0x1::randomness_config::RandomnessConfig"
35288
+ ]
35289
+ },
35290
+ {
35291
+ "name": "initialize",
35292
+ "visibility": "public",
35293
+ "is_entry": false,
35294
+ "is_view": false,
35295
+ "generic_type_params": [],
35296
+ "params": [
35297
+ "&signer",
35298
+ "0x1::randomness_config::RandomnessConfig"
35299
+ ],
35300
+ "return": []
35301
+ },
35302
+ {
35303
+ "name": "set_for_next_epoch",
35304
+ "visibility": "public",
35305
+ "is_entry": false,
35306
+ "is_view": false,
35307
+ "generic_type_params": [],
35308
+ "params": [
35309
+ "&signer",
35310
+ "0x1::randomness_config::RandomnessConfig"
35311
+ ],
35312
+ "return": []
35313
+ },
35314
+ {
35315
+ "name": "enabled",
35316
+ "visibility": "public",
35317
+ "is_entry": false,
35318
+ "is_view": false,
35319
+ "generic_type_params": [],
35320
+ "params": [],
35321
+ "return": [
35322
+ "bool"
35323
+ ]
35324
+ },
35325
+ {
35326
+ "name": "new_off",
35327
+ "visibility": "public",
35328
+ "is_entry": false,
35329
+ "is_view": false,
35330
+ "generic_type_params": [],
35331
+ "params": [],
35332
+ "return": [
35333
+ "0x1::randomness_config::RandomnessConfig"
35334
+ ]
35335
+ },
35336
+ {
35337
+ "name": "new_v1",
35338
+ "visibility": "public",
35339
+ "is_entry": false,
35340
+ "is_view": false,
35341
+ "generic_type_params": [],
35342
+ "params": [
35343
+ "0x1::fixed_point64::FixedPoint64",
35344
+ "0x1::fixed_point64::FixedPoint64"
35345
+ ],
35346
+ "return": [
35347
+ "0x1::randomness_config::RandomnessConfig"
35348
+ ]
35349
+ },
35350
+ {
35351
+ "name": "new_v2",
35352
+ "visibility": "public",
35353
+ "is_entry": false,
35354
+ "is_view": false,
35355
+ "generic_type_params": [],
35356
+ "params": [
35357
+ "0x1::fixed_point64::FixedPoint64",
35358
+ "0x1::fixed_point64::FixedPoint64",
35359
+ "0x1::fixed_point64::FixedPoint64"
35360
+ ],
35361
+ "return": [
35362
+ "0x1::randomness_config::RandomnessConfig"
34918
35363
  ]
34919
35364
  }
34920
35365
  ],
@@ -35041,6 +35486,30 @@
35041
35486
  "bool"
35042
35487
  ]
35043
35488
  },
35489
+ {
35490
+ "name": "remove",
35491
+ "visibility": "public",
35492
+ "is_entry": false,
35493
+ "is_view": false,
35494
+ "generic_type_params": [
35495
+ {
35496
+ "constraints": [
35497
+ "copy",
35498
+ "drop"
35499
+ ]
35500
+ },
35501
+ {
35502
+ "constraints": []
35503
+ }
35504
+ ],
35505
+ "params": [
35506
+ "&mut 0x1::table_with_length::TableWithLength<T0, T1>",
35507
+ "T0"
35508
+ ],
35509
+ "return": [
35510
+ "T1"
35511
+ ]
35512
+ },
35044
35513
  {
35045
35514
  "name": "new",
35046
35515
  "visibility": "public",
@@ -35179,30 +35648,6 @@
35179
35648
  "u64"
35180
35649
  ]
35181
35650
  },
35182
- {
35183
- "name": "remove",
35184
- "visibility": "public",
35185
- "is_entry": false,
35186
- "is_view": false,
35187
- "generic_type_params": [
35188
- {
35189
- "constraints": [
35190
- "copy",
35191
- "drop"
35192
- ]
35193
- },
35194
- {
35195
- "constraints": []
35196
- }
35197
- ],
35198
- "params": [
35199
- "&mut 0x1::table_with_length::TableWithLength<T0, T1>",
35200
- "T0"
35201
- ],
35202
- "return": [
35203
- "T1"
35204
- ]
35205
- },
35206
35651
  {
35207
35652
  "name": "add",
35208
35653
  "visibility": "public",
@@ -36640,6 +37085,200 @@
36640
37085
  ]
36641
37086
  }
36642
37087
  },
37088
+ {
37089
+ "abi": {
37090
+ "address": "0x1",
37091
+ "name": "transaction_limits",
37092
+ "friends": [
37093
+ "0x1::transaction_validation",
37094
+ "0x1::genesis"
37095
+ ],
37096
+ "exposed_functions": [
37097
+ {
37098
+ "name": "initialize",
37099
+ "visibility": "friend",
37100
+ "is_entry": false,
37101
+ "is_view": false,
37102
+ "generic_type_params": [],
37103
+ "params": [
37104
+ "&signer",
37105
+ "vector<0x1::transaction_limits::TxnLimitTier>",
37106
+ "vector<0x1::transaction_limits::TxnLimitTier>"
37107
+ ],
37108
+ "return": []
37109
+ },
37110
+ {
37111
+ "name": "new_tier",
37112
+ "visibility": "friend",
37113
+ "is_entry": false,
37114
+ "is_view": false,
37115
+ "generic_type_params": [],
37116
+ "params": [
37117
+ "u64",
37118
+ "u64"
37119
+ ],
37120
+ "return": [
37121
+ "0x1::transaction_limits::TxnLimitTier"
37122
+ ]
37123
+ },
37124
+ {
37125
+ "name": "update_config",
37126
+ "visibility": "public",
37127
+ "is_entry": false,
37128
+ "is_view": false,
37129
+ "generic_type_params": [],
37130
+ "params": [
37131
+ "&signer",
37132
+ "vector<u64>",
37133
+ "vector<u64>",
37134
+ "vector<u64>",
37135
+ "vector<u64>"
37136
+ ],
37137
+ "return": []
37138
+ },
37139
+ {
37140
+ "name": "validate_high_txn_limits",
37141
+ "visibility": "friend",
37142
+ "is_entry": false,
37143
+ "is_view": false,
37144
+ "generic_type_params": [],
37145
+ "params": [
37146
+ "address",
37147
+ "0x1::transaction_limits::UserTxnLimitsRequest"
37148
+ ],
37149
+ "return": []
37150
+ }
37151
+ ],
37152
+ "structs": [
37153
+ {
37154
+ "name": "RequestedMultipliers",
37155
+ "is_native": false,
37156
+ "is_event": false,
37157
+ "is_enum": true,
37158
+ "abilities": [
37159
+ "copy",
37160
+ "drop",
37161
+ "store"
37162
+ ],
37163
+ "generic_type_params": [],
37164
+ "fields": [],
37165
+ "variants": [
37166
+ {
37167
+ "name": "V1",
37168
+ "fields": [
37169
+ {
37170
+ "name": "execution_multiplier_percent",
37171
+ "type": "u64"
37172
+ },
37173
+ {
37174
+ "name": "io_multiplier_percent",
37175
+ "type": "u64"
37176
+ }
37177
+ ]
37178
+ }
37179
+ ]
37180
+ },
37181
+ {
37182
+ "name": "TxnLimitTier",
37183
+ "is_native": false,
37184
+ "is_event": false,
37185
+ "is_enum": false,
37186
+ "abilities": [
37187
+ "copy",
37188
+ "drop",
37189
+ "store"
37190
+ ],
37191
+ "generic_type_params": [],
37192
+ "fields": [
37193
+ {
37194
+ "name": "min_stake",
37195
+ "type": "u64"
37196
+ },
37197
+ {
37198
+ "name": "multiplier_percent",
37199
+ "type": "u64"
37200
+ }
37201
+ ],
37202
+ "variants": []
37203
+ },
37204
+ {
37205
+ "name": "TxnLimitsConfig",
37206
+ "is_native": false,
37207
+ "is_event": false,
37208
+ "is_enum": true,
37209
+ "abilities": [
37210
+ "key"
37211
+ ],
37212
+ "generic_type_params": [],
37213
+ "fields": [],
37214
+ "variants": [
37215
+ {
37216
+ "name": "V1",
37217
+ "fields": [
37218
+ {
37219
+ "name": "execution_tiers",
37220
+ "type": "vector<0x1::transaction_limits::TxnLimitTier>"
37221
+ },
37222
+ {
37223
+ "name": "io_tiers",
37224
+ "type": "vector<0x1::transaction_limits::TxnLimitTier>"
37225
+ }
37226
+ ]
37227
+ }
37228
+ ]
37229
+ },
37230
+ {
37231
+ "name": "UserTxnLimitsRequest",
37232
+ "is_native": false,
37233
+ "is_event": false,
37234
+ "is_enum": true,
37235
+ "abilities": [
37236
+ "copy",
37237
+ "drop"
37238
+ ],
37239
+ "generic_type_params": [],
37240
+ "fields": [],
37241
+ "variants": [
37242
+ {
37243
+ "name": "StakePoolOwner",
37244
+ "fields": [
37245
+ {
37246
+ "name": "multipliers",
37247
+ "type": "0x1::transaction_limits::RequestedMultipliers"
37248
+ }
37249
+ ]
37250
+ },
37251
+ {
37252
+ "name": "DelegatedVoter",
37253
+ "fields": [
37254
+ {
37255
+ "name": "pool_address",
37256
+ "type": "address"
37257
+ },
37258
+ {
37259
+ "name": "multipliers",
37260
+ "type": "0x1::transaction_limits::RequestedMultipliers"
37261
+ }
37262
+ ]
37263
+ },
37264
+ {
37265
+ "name": "DelegationPoolDelegator",
37266
+ "fields": [
37267
+ {
37268
+ "name": "pool_address",
37269
+ "type": "address"
37270
+ },
37271
+ {
37272
+ "name": "multipliers",
37273
+ "type": "0x1::transaction_limits::RequestedMultipliers"
37274
+ }
37275
+ ]
37276
+ }
37277
+ ]
37278
+ }
37279
+ ]
37280
+ }
37281
+ },
36643
37282
  {
36644
37283
  "abi": {
36645
37284
  "address": "0x1",
@@ -38053,6 +38692,17 @@
38053
38692
  "0x1::option::Option<0x1::transaction_context::EntryFunctionPayload>"
38054
38693
  ]
38055
38694
  },
38695
+ {
38696
+ "name": "is_encrypted_txn",
38697
+ "visibility": "public",
38698
+ "is_entry": false,
38699
+ "is_view": false,
38700
+ "generic_type_params": [],
38701
+ "params": [],
38702
+ "return": [
38703
+ "bool"
38704
+ ]
38705
+ },
38056
38706
  {
38057
38707
  "name": "max_gas_amount",
38058
38708
  "visibility": "public",
@@ -38706,6 +39356,108 @@
38706
39356
  ]
38707
39357
  }
38708
39358
  },
39359
+ {
39360
+ "abi": {
39361
+ "address": "0x1",
39362
+ "name": "epoch_timeout_config",
39363
+ "friends": [
39364
+ "0x1::reconfiguration_with_dkg"
39365
+ ],
39366
+ "exposed_functions": [
39367
+ {
39368
+ "name": "on_new_epoch",
39369
+ "visibility": "friend",
39370
+ "is_entry": false,
39371
+ "is_view": false,
39372
+ "generic_type_params": [],
39373
+ "params": [
39374
+ "&signer"
39375
+ ],
39376
+ "return": []
39377
+ },
39378
+ {
39379
+ "name": "initialize",
39380
+ "visibility": "public",
39381
+ "is_entry": false,
39382
+ "is_view": false,
39383
+ "generic_type_params": [],
39384
+ "params": [
39385
+ "&signer"
39386
+ ],
39387
+ "return": []
39388
+ },
39389
+ {
39390
+ "name": "set_for_next_epoch",
39391
+ "visibility": "public",
39392
+ "is_entry": false,
39393
+ "is_view": false,
39394
+ "generic_type_params": [],
39395
+ "params": [
39396
+ "&signer",
39397
+ "0x1::epoch_timeout_config::EpochTimeoutConfig"
39398
+ ],
39399
+ "return": []
39400
+ },
39401
+ {
39402
+ "name": "force_end_grace_period_secs",
39403
+ "visibility": "public",
39404
+ "is_entry": false,
39405
+ "is_view": false,
39406
+ "generic_type_params": [],
39407
+ "params": [],
39408
+ "return": [
39409
+ "0x1::option::Option<u64>"
39410
+ ]
39411
+ },
39412
+ {
39413
+ "name": "new_disabled",
39414
+ "visibility": "public",
39415
+ "is_entry": false,
39416
+ "is_view": false,
39417
+ "generic_type_params": [],
39418
+ "params": [],
39419
+ "return": [
39420
+ "0x1::epoch_timeout_config::EpochTimeoutConfig"
39421
+ ]
39422
+ },
39423
+ {
39424
+ "name": "new_with_grace_period",
39425
+ "visibility": "public",
39426
+ "is_entry": false,
39427
+ "is_view": false,
39428
+ "generic_type_params": [],
39429
+ "params": [
39430
+ "u64"
39431
+ ],
39432
+ "return": [
39433
+ "0x1::epoch_timeout_config::EpochTimeoutConfig"
39434
+ ]
39435
+ }
39436
+ ],
39437
+ "structs": [
39438
+ {
39439
+ "name": "EpochTimeoutConfig",
39440
+ "is_native": false,
39441
+ "is_event": false,
39442
+ "is_enum": false,
39443
+ "abilities": [
39444
+ "copy",
39445
+ "drop",
39446
+ "store",
39447
+ "key"
39448
+ ],
39449
+ "generic_type_params": [],
39450
+ "fields": [
39451
+ {
39452
+ "name": "force_end_grace_period_secs",
39453
+ "type": "0x1::option::Option<u64>"
39454
+ }
39455
+ ],
39456
+ "variants": []
39457
+ }
39458
+ ]
39459
+ }
39460
+ },
38709
39461
  {
38710
39462
  "abi": {
38711
39463
  "address": "0x1",
@@ -40126,43 +40878,43 @@
40126
40878
  "friends": [],
40127
40879
  "exposed_functions": [
40128
40880
  {
40129
- "name": "freeze_code_object",
40881
+ "name": "publish",
40130
40882
  "visibility": "public",
40131
40883
  "is_entry": true,
40132
40884
  "is_view": false,
40133
40885
  "generic_type_params": [],
40134
40886
  "params": [
40135
40887
  "&signer",
40136
- "0x1::object::Object<0x1::code::PackageRegistry>"
40888
+ "vector<u8>",
40889
+ "vector<vector<u8>>"
40137
40890
  ],
40138
40891
  "return": []
40139
40892
  },
40140
40893
  {
40141
- "name": "get_code_object_signer",
40894
+ "name": "freeze_code_object",
40142
40895
  "visibility": "public",
40143
- "is_entry": false,
40896
+ "is_entry": true,
40144
40897
  "is_view": false,
40145
40898
  "generic_type_params": [],
40146
40899
  "params": [
40147
40900
  "&signer",
40148
40901
  "0x1::object::Object<0x1::code::PackageRegistry>"
40149
40902
  ],
40150
- "return": [
40151
- "signer"
40152
- ]
40903
+ "return": []
40153
40904
  },
40154
40905
  {
40155
- "name": "publish",
40906
+ "name": "get_code_object_signer",
40156
40907
  "visibility": "public",
40157
- "is_entry": true,
40908
+ "is_entry": false,
40158
40909
  "is_view": false,
40159
40910
  "generic_type_params": [],
40160
40911
  "params": [
40161
40912
  "&signer",
40162
- "vector<u8>",
40163
- "vector<vector<u8>>"
40913
+ "0x1::object::Object<0x1::code::PackageRegistry>"
40164
40914
  ],
40165
- "return": []
40915
+ "return": [
40916
+ "signer"
40917
+ ]
40166
40918
  },
40167
40919
  {
40168
40920
  "name": "upgrade",
@@ -40749,6 +41501,202 @@
40749
41501
  ]
40750
41502
  }
40751
41503
  },
41504
+ {
41505
+ "abi": {
41506
+ "address": "0x1",
41507
+ "name": "storage_slot_or_inline",
41508
+ "friends": [],
41509
+ "exposed_functions": [
41510
+ {
41511
+ "name": "borrow",
41512
+ "visibility": "public",
41513
+ "is_entry": false,
41514
+ "is_view": false,
41515
+ "generic_type_params": [
41516
+ {
41517
+ "constraints": [
41518
+ "store"
41519
+ ]
41520
+ }
41521
+ ],
41522
+ "params": [
41523
+ "&0x1::storage_slot_or_inline::StorageSlotOrInline<T0>"
41524
+ ],
41525
+ "return": [
41526
+ "&T0"
41527
+ ]
41528
+ },
41529
+ {
41530
+ "name": "borrow_mut",
41531
+ "visibility": "public",
41532
+ "is_entry": false,
41533
+ "is_view": false,
41534
+ "generic_type_params": [
41535
+ {
41536
+ "constraints": [
41537
+ "store"
41538
+ ]
41539
+ }
41540
+ ],
41541
+ "params": [
41542
+ "&mut 0x1::storage_slot_or_inline::StorageSlotOrInline<T0>"
41543
+ ],
41544
+ "return": [
41545
+ "&mut T0"
41546
+ ]
41547
+ },
41548
+ {
41549
+ "name": "destroy",
41550
+ "visibility": "public",
41551
+ "is_entry": false,
41552
+ "is_view": false,
41553
+ "generic_type_params": [
41554
+ {
41555
+ "constraints": [
41556
+ "store"
41557
+ ]
41558
+ }
41559
+ ],
41560
+ "params": [
41561
+ "0x1::storage_slot_or_inline::StorageSlotOrInline<T0>"
41562
+ ],
41563
+ "return": [
41564
+ "T0"
41565
+ ]
41566
+ },
41567
+ {
41568
+ "name": "move_to_inline",
41569
+ "visibility": "public",
41570
+ "is_entry": false,
41571
+ "is_view": false,
41572
+ "generic_type_params": [
41573
+ {
41574
+ "constraints": [
41575
+ "store"
41576
+ ]
41577
+ }
41578
+ ],
41579
+ "params": [
41580
+ "&mut 0x1::storage_slot_or_inline::StorageSlotOrInline<T0>"
41581
+ ],
41582
+ "return": []
41583
+ },
41584
+ {
41585
+ "name": "move_to_storage_slot",
41586
+ "visibility": "public",
41587
+ "is_entry": false,
41588
+ "is_view": false,
41589
+ "generic_type_params": [
41590
+ {
41591
+ "constraints": [
41592
+ "store"
41593
+ ]
41594
+ }
41595
+ ],
41596
+ "params": [
41597
+ "&mut 0x1::storage_slot_or_inline::StorageSlotOrInline<T0>"
41598
+ ],
41599
+ "return": []
41600
+ },
41601
+ {
41602
+ "name": "new_inline",
41603
+ "visibility": "public",
41604
+ "is_entry": false,
41605
+ "is_view": false,
41606
+ "generic_type_params": [
41607
+ {
41608
+ "constraints": [
41609
+ "store"
41610
+ ]
41611
+ }
41612
+ ],
41613
+ "params": [
41614
+ "T0"
41615
+ ],
41616
+ "return": [
41617
+ "0x1::storage_slot_or_inline::StorageSlotOrInline<T0>"
41618
+ ]
41619
+ },
41620
+ {
41621
+ "name": "new_storage_slot",
41622
+ "visibility": "public",
41623
+ "is_entry": false,
41624
+ "is_view": false,
41625
+ "generic_type_params": [
41626
+ {
41627
+ "constraints": [
41628
+ "store"
41629
+ ]
41630
+ }
41631
+ ],
41632
+ "params": [
41633
+ "T0"
41634
+ ],
41635
+ "return": [
41636
+ "0x1::storage_slot_or_inline::StorageSlotOrInline<T0>"
41637
+ ]
41638
+ }
41639
+ ],
41640
+ "structs": [
41641
+ {
41642
+ "name": "Dummy",
41643
+ "is_native": false,
41644
+ "is_event": false,
41645
+ "is_enum": false,
41646
+ "abilities": [
41647
+ "store"
41648
+ ],
41649
+ "generic_type_params": [],
41650
+ "fields": [
41651
+ {
41652
+ "name": "dummy_field",
41653
+ "type": "bool"
41654
+ }
41655
+ ],
41656
+ "variants": []
41657
+ },
41658
+ {
41659
+ "name": "StorageSlotOrInline",
41660
+ "is_native": false,
41661
+ "is_event": false,
41662
+ "is_enum": true,
41663
+ "abilities": [
41664
+ "store"
41665
+ ],
41666
+ "generic_type_params": [
41667
+ {
41668
+ "constraints": []
41669
+ }
41670
+ ],
41671
+ "fields": [],
41672
+ "variants": [
41673
+ {
41674
+ "name": "Inline",
41675
+ "fields": [
41676
+ {
41677
+ "name": "value",
41678
+ "type": "T0"
41679
+ }
41680
+ ]
41681
+ },
41682
+ {
41683
+ "name": "StorageSlot",
41684
+ "fields": [
41685
+ {
41686
+ "name": "slot",
41687
+ "type": "0x1::storage_slot::StorageSlot<T0>"
41688
+ }
41689
+ ]
41690
+ },
41691
+ {
41692
+ "name": "Transient",
41693
+ "fields": []
41694
+ }
41695
+ ]
41696
+ }
41697
+ ]
41698
+ }
41699
+ },
40752
41700
  {
40753
41701
  "abi": {
40754
41702
  "address": "0x1",
@@ -40798,6 +41746,46 @@
40798
41746
  }
40799
41747
  ],
40800
41748
  "structs": [
41749
+ {
41750
+ "name": "EpilogueArgs",
41751
+ "is_native": false,
41752
+ "is_event": false,
41753
+ "is_enum": true,
41754
+ "abilities": [],
41755
+ "generic_type_params": [],
41756
+ "fields": [],
41757
+ "variants": [
41758
+ {
41759
+ "name": "V1",
41760
+ "fields": [
41761
+ {
41762
+ "name": "fee_statement",
41763
+ "type": "0x1::transaction_fee::FeeStatement"
41764
+ },
41765
+ {
41766
+ "name": "txn_gas_price",
41767
+ "type": "u64"
41768
+ },
41769
+ {
41770
+ "name": "txn_max_gas_units",
41771
+ "type": "u64"
41772
+ },
41773
+ {
41774
+ "name": "gas_units_remaining",
41775
+ "type": "u64"
41776
+ },
41777
+ {
41778
+ "name": "is_simulation",
41779
+ "type": "bool"
41780
+ },
41781
+ {
41782
+ "name": "is_orderless_txn",
41783
+ "type": "bool"
41784
+ }
41785
+ ]
41786
+ }
41787
+ ]
41788
+ },
40801
41789
  {
40802
41790
  "name": "GasPermission",
40803
41791
  "is_native": false,
@@ -40817,6 +41805,70 @@
40817
41805
  ],
40818
41806
  "variants": []
40819
41807
  },
41808
+ {
41809
+ "name": "PrologueArgs",
41810
+ "is_native": false,
41811
+ "is_event": false,
41812
+ "is_enum": true,
41813
+ "abilities": [],
41814
+ "generic_type_params": [],
41815
+ "fields": [],
41816
+ "variants": [
41817
+ {
41818
+ "name": "V1",
41819
+ "fields": [
41820
+ {
41821
+ "name": "needs_fee_payer_auth_check",
41822
+ "type": "bool"
41823
+ },
41824
+ {
41825
+ "name": "txn_sender_public_key",
41826
+ "type": "0x1::option::Option<vector<u8>>"
41827
+ },
41828
+ {
41829
+ "name": "fee_payer_public_key_hash",
41830
+ "type": "0x1::option::Option<vector<u8>>"
41831
+ },
41832
+ {
41833
+ "name": "replay_protector",
41834
+ "type": "0x1::transaction_validation::ReplayProtector"
41835
+ },
41836
+ {
41837
+ "name": "secondary_signer_addresses",
41838
+ "type": "vector<address>"
41839
+ },
41840
+ {
41841
+ "name": "secondary_signer_public_key_hashes",
41842
+ "type": "vector<0x1::option::Option<vector<u8>>>"
41843
+ },
41844
+ {
41845
+ "name": "txn_gas_price",
41846
+ "type": "u64"
41847
+ },
41848
+ {
41849
+ "name": "txn_max_gas_units",
41850
+ "type": "u64"
41851
+ },
41852
+ {
41853
+ "name": "txn_expiration_time",
41854
+ "type": "u64"
41855
+ },
41856
+ {
41857
+ "name": "chain_id",
41858
+ "type": "u8"
41859
+ },
41860
+ {
41861
+ "name": "is_simulation",
41862
+ "type": "bool"
41863
+ },
41864
+ {
41865
+ "name": "txn_limits_request",
41866
+ "type": "0x1::option::Option<0x1::transaction_limits::UserTxnLimitsRequest>"
41867
+ }
41868
+ ]
41869
+ }
41870
+ ]
41871
+ },
40820
41872
  {
40821
41873
  "name": "ReplayProtector",
40822
41874
  "is_native": false,
@@ -41279,7 +42331,7 @@
41279
42331
  "friends": [],
41280
42332
  "exposed_functions": [
41281
42333
  {
41282
- "name": "new",
42334
+ "name": "remove",
41283
42335
  "visibility": "public",
41284
42336
  "is_entry": false,
41285
42337
  "is_view": false,
@@ -41291,14 +42343,15 @@
41291
42343
  }
41292
42344
  ],
41293
42345
  "params": [
41294
- "bool"
42346
+ "&mut 0x1::storage_slots_allocator::StorageSlotsAllocator<T0>",
42347
+ "0x1::storage_slots_allocator::StoredSlot"
41295
42348
  ],
41296
42349
  "return": [
41297
- "0x1::storage_slots_allocator::StorageSlotsAllocator<T0>"
42350
+ "T0"
41298
42351
  ]
41299
42352
  },
41300
42353
  {
41301
- "name": "borrow",
42354
+ "name": "new",
41302
42355
  "visibility": "public",
41303
42356
  "is_entry": false,
41304
42357
  "is_view": false,
@@ -41310,15 +42363,14 @@
41310
42363
  }
41311
42364
  ],
41312
42365
  "params": [
41313
- "&0x1::storage_slots_allocator::StorageSlotsAllocator<T0>",
41314
- "u64"
42366
+ "bool"
41315
42367
  ],
41316
42368
  "return": [
41317
- "&T0"
42369
+ "0x1::storage_slots_allocator::StorageSlotsAllocator<T0>"
41318
42370
  ]
41319
42371
  },
41320
42372
  {
41321
- "name": "borrow_mut",
42373
+ "name": "borrow",
41322
42374
  "visibility": "public",
41323
42375
  "is_entry": false,
41324
42376
  "is_view": false,
@@ -41330,15 +42382,15 @@
41330
42382
  }
41331
42383
  ],
41332
42384
  "params": [
41333
- "&mut 0x1::storage_slots_allocator::StorageSlotsAllocator<T0>",
42385
+ "&0x1::storage_slots_allocator::StorageSlotsAllocator<T0>",
41334
42386
  "u64"
41335
42387
  ],
41336
42388
  "return": [
41337
- "&mut T0"
42389
+ "&T0"
41338
42390
  ]
41339
42391
  },
41340
42392
  {
41341
- "name": "destroy_empty",
42393
+ "name": "borrow_mut",
41342
42394
  "visibility": "public",
41343
42395
  "is_entry": false,
41344
42396
  "is_view": false,
@@ -41350,12 +42402,15 @@
41350
42402
  }
41351
42403
  ],
41352
42404
  "params": [
41353
- "0x1::storage_slots_allocator::StorageSlotsAllocator<T0>"
42405
+ "&mut 0x1::storage_slots_allocator::StorageSlotsAllocator<T0>",
42406
+ "u64"
41354
42407
  ],
41355
- "return": []
42408
+ "return": [
42409
+ "&mut T0"
42410
+ ]
41356
42411
  },
41357
42412
  {
41358
- "name": "remove",
42413
+ "name": "destroy_empty",
41359
42414
  "visibility": "public",
41360
42415
  "is_entry": false,
41361
42416
  "is_view": false,
@@ -41367,12 +42422,9 @@
41367
42422
  }
41368
42423
  ],
41369
42424
  "params": [
41370
- "&mut 0x1::storage_slots_allocator::StorageSlotsAllocator<T0>",
41371
- "0x1::storage_slots_allocator::StoredSlot"
42425
+ "0x1::storage_slots_allocator::StorageSlotsAllocator<T0>"
41372
42426
  ],
41373
- "return": [
41374
- "T0"
41375
- ]
42427
+ "return": []
41376
42428
  },
41377
42429
  {
41378
42430
  "name": "add",
@@ -41680,6 +42732,72 @@
41680
42732
  ]
41681
42733
  }
41682
42734
  },
42735
+ {
42736
+ "abi": {
42737
+ "address": "0x1",
42738
+ "name": "chunky_dkg_config_seqnum",
42739
+ "friends": [
42740
+ "0x1::reconfiguration_with_dkg"
42741
+ ],
42742
+ "exposed_functions": [
42743
+ {
42744
+ "name": "on_new_epoch",
42745
+ "visibility": "friend",
42746
+ "is_entry": false,
42747
+ "is_view": false,
42748
+ "generic_type_params": [],
42749
+ "params": [
42750
+ "&signer"
42751
+ ],
42752
+ "return": []
42753
+ },
42754
+ {
42755
+ "name": "initialize",
42756
+ "visibility": "public",
42757
+ "is_entry": false,
42758
+ "is_view": false,
42759
+ "generic_type_params": [],
42760
+ "params": [
42761
+ "&signer"
42762
+ ],
42763
+ "return": []
42764
+ },
42765
+ {
42766
+ "name": "set_for_next_epoch",
42767
+ "visibility": "public",
42768
+ "is_entry": false,
42769
+ "is_view": false,
42770
+ "generic_type_params": [],
42771
+ "params": [
42772
+ "&signer",
42773
+ "u64"
42774
+ ],
42775
+ "return": []
42776
+ }
42777
+ ],
42778
+ "structs": [
42779
+ {
42780
+ "name": "ChunkyDKGConfigSeqNum",
42781
+ "is_native": false,
42782
+ "is_event": false,
42783
+ "is_enum": false,
42784
+ "abilities": [
42785
+ "drop",
42786
+ "store",
42787
+ "key"
42788
+ ],
42789
+ "generic_type_params": [],
42790
+ "fields": [
42791
+ {
42792
+ "name": "seq_num",
42793
+ "type": "u64"
42794
+ }
42795
+ ],
42796
+ "variants": []
42797
+ }
42798
+ ]
42799
+ }
42800
+ },
41683
42801
  {
41684
42802
  "abi": {
41685
42803
  "address": "0x1",
@@ -41852,6 +42970,15 @@
41852
42970
  ],
41853
42971
  "return": []
41854
42972
  },
42973
+ {
42974
+ "name": "try_advance_reconfig",
42975
+ "visibility": "friend",
42976
+ "is_entry": false,
42977
+ "is_view": false,
42978
+ "generic_type_params": [],
42979
+ "params": [],
42980
+ "return": []
42981
+ },
41855
42982
  {
41856
42983
  "name": "try_start",
41857
42984
  "visibility": "friend",
@@ -41871,7 +42998,47 @@
41871
42998
  "return": []
41872
42999
  }
41873
43000
  ],
41874
- "structs": []
43001
+ "structs": [
43002
+ {
43003
+ "name": "ForceEndEpochEvent",
43004
+ "is_native": false,
43005
+ "is_event": true,
43006
+ "is_enum": true,
43007
+ "abilities": [
43008
+ "drop",
43009
+ "store"
43010
+ ],
43011
+ "generic_type_params": [],
43012
+ "fields": [],
43013
+ "variants": [
43014
+ {
43015
+ "name": "V1",
43016
+ "fields": [
43017
+ {
43018
+ "name": "epoch",
43019
+ "type": "u64"
43020
+ },
43021
+ {
43022
+ "name": "dkg_incomplete",
43023
+ "type": "bool"
43024
+ },
43025
+ {
43026
+ "name": "chunky_incomplete",
43027
+ "type": "bool"
43028
+ },
43029
+ {
43030
+ "name": "deadline_us",
43031
+ "type": "u64"
43032
+ },
43033
+ {
43034
+ "name": "now_us",
43035
+ "type": "u64"
43036
+ }
43037
+ ]
43038
+ }
43039
+ ]
43040
+ }
43041
+ ]
41875
43042
  }
41876
43043
  },
41877
43044
  {