@argonprotocol/mainchain 1.0.11 → 1.0.13

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 (58) hide show
  1. package/README.md +18 -15
  2. package/lib/cjs/WageProtector.d.ts +1 -1
  3. package/lib/cjs/WageProtector.js +3 -2
  4. package/lib/cjs/WageProtector.js.map +1 -1
  5. package/lib/cjs/__test__/WageProtector.test.js +2 -2
  6. package/lib/cjs/__test__/WageProtector.test.js.map +1 -1
  7. package/lib/cjs/examples/decodePkcs.js +3 -3
  8. package/lib/cjs/examples/decodePkcs.js.map +1 -1
  9. package/lib/cjs/examples/findSs58Formats.js +6 -1
  10. package/lib/cjs/examples/findSs58Formats.js.map +1 -1
  11. package/lib/cjs/index.d.ts +9 -9
  12. package/lib/cjs/index.js.map +1 -1
  13. package/lib/cjs/interfaces/augment-api-consts.d.ts +0 -10
  14. package/lib/cjs/interfaces/augment-api-errors.d.ts +16 -0
  15. package/lib/cjs/interfaces/augment-api-events.d.ts +678 -149
  16. package/lib/cjs/interfaces/augment-api-query.d.ts +340 -127
  17. package/lib/cjs/interfaces/augment-api-rpc.d.ts +1 -1
  18. package/lib/cjs/interfaces/augment-api-tx.d.ts +362 -96
  19. package/lib/cjs/interfaces/lookup.d.ts +65 -54
  20. package/lib/cjs/interfaces/lookup.js +655 -411
  21. package/lib/cjs/interfaces/lookup.js.map +1 -1
  22. package/lib/cjs/interfaces/types-lookup.d.ts +90 -62
  23. package/lib/esm/WageProtector.d.ts +1 -1
  24. package/lib/esm/WageProtector.js +3 -2
  25. package/lib/esm/WageProtector.js.map +1 -1
  26. package/lib/esm/__test__/WageProtector.test.js +3 -3
  27. package/lib/esm/__test__/WageProtector.test.js.map +1 -1
  28. package/lib/esm/examples/decodePkcs.js +8 -8
  29. package/lib/esm/examples/decodePkcs.js.map +1 -1
  30. package/lib/esm/examples/findSs58Formats.js +6 -1
  31. package/lib/esm/examples/findSs58Formats.js.map +1 -1
  32. package/lib/esm/index.d.ts +9 -9
  33. package/lib/esm/index.js +7 -7
  34. package/lib/esm/index.js.map +1 -1
  35. package/lib/esm/interfaces/augment-api-consts.d.ts +0 -10
  36. package/lib/esm/interfaces/augment-api-errors.d.ts +16 -0
  37. package/lib/esm/interfaces/augment-api-events.d.ts +678 -149
  38. package/lib/esm/interfaces/augment-api-query.d.ts +340 -127
  39. package/lib/esm/interfaces/augment-api-rpc.d.ts +1 -1
  40. package/lib/esm/interfaces/augment-api-tx.d.ts +362 -96
  41. package/lib/esm/interfaces/lookup.d.ts +65 -54
  42. package/lib/esm/interfaces/lookup.js +655 -411
  43. package/lib/esm/interfaces/lookup.js.map +1 -1
  44. package/lib/esm/interfaces/types-lookup.d.ts +90 -62
  45. package/lib/tsconfig-cjs.tsbuildinfo +1 -1
  46. package/lib/tsconfig-types.tsbuildinfo +1 -1
  47. package/lib/tsconfig.tsbuildinfo +1 -1
  48. package/lib/types/WageProtector.d.ts +1 -1
  49. package/lib/types/index.d.ts +9 -9
  50. package/lib/types/interfaces/augment-api-consts.d.ts +0 -10
  51. package/lib/types/interfaces/augment-api-errors.d.ts +16 -0
  52. package/lib/types/interfaces/augment-api-events.d.ts +678 -149
  53. package/lib/types/interfaces/augment-api-query.d.ts +340 -127
  54. package/lib/types/interfaces/augment-api-rpc.d.ts +1 -1
  55. package/lib/types/interfaces/augment-api-tx.d.ts +362 -96
  56. package/lib/types/interfaces/lookup.d.ts +65 -54
  57. package/lib/types/interfaces/types-lookup.d.ts +90 -62
  58. package/package.json +1 -1
@@ -250,6 +250,7 @@ declare const _default: {
250
250
  NewMiners: {
251
251
  startIndex: string;
252
252
  newMiners: string;
253
+ cohortId: string;
253
254
  };
254
255
  SlotBidderAdded: {
255
256
  accountId: string;
@@ -289,7 +290,7 @@ declare const _default: {
289
290
  argonots: string;
290
291
  rewardSharing: string;
291
292
  authorityKeys: string;
292
- slotId: string;
293
+ cohortId: string;
293
294
  };
294
295
  /**
295
296
  * Lookup42: argon_runtime::SessionKeys
@@ -387,6 +388,7 @@ declare const _default: {
387
388
  bondedArgons: string;
388
389
  addedSecuritizationPercent: string;
389
390
  operatorAccountId: string;
391
+ activationTick: string;
390
392
  };
391
393
  VaultModified: {
392
394
  vaultId: string;
@@ -446,6 +448,12 @@ declare const _default: {
446
448
  obligationId: string;
447
449
  error: string;
448
450
  };
451
+ ObligationBaseFeeMaturationError: {
452
+ obligationId: string;
453
+ baseFee: string;
454
+ vaultId: string;
455
+ error: string;
456
+ };
449
457
  };
450
458
  };
451
459
  /**
@@ -2489,6 +2497,8 @@ declare const _default: {
2489
2497
  VaultNotFound: string;
2490
2498
  AccountWouldBeBelowMinimum: string;
2491
2499
  GenericObligationError: string;
2500
+ CannotRegisterDuplicateKeys: string;
2501
+ InvalidKeyFormat: string;
2492
2502
  };
2493
2503
  };
2494
2504
  /**
@@ -2543,6 +2553,7 @@ declare const _default: {
2543
2553
  pendingTerms: string;
2544
2554
  pendingBondedArgons: string;
2545
2555
  pendingBitcoins: string;
2556
+ activationTick: string;
2546
2557
  };
2547
2558
  /**
2548
2559
  * Lookup349: argon_primitives::vault::VaultArgons<Balance>
@@ -2571,7 +2582,7 @@ declare const _default: {
2571
2582
  _enum: string[];
2572
2583
  };
2573
2584
  /**
2574
- * Lookup360: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2585
+ * Lookup363: argon_primitives::vault::Obligation<sp_core::crypto::AccountId32, Balance>
2575
2586
  **/
2576
2587
  ArgonPrimitivesVaultObligation: {
2577
2588
  obligationId: string;
@@ -2585,13 +2596,13 @@ declare const _default: {
2585
2596
  expiration: string;
2586
2597
  };
2587
2598
  /**
2588
- * Lookup363: pallet_vaults::pallet::Error<T>
2599
+ * Lookup366: pallet_vaults::pallet::Error<T>
2589
2600
  **/
2590
2601
  PalletVaultsError: {
2591
2602
  _enum: string[];
2592
2603
  };
2593
2604
  /**
2594
- * Lookup364: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
2605
+ * Lookup367: pallet_bitcoin_locks::pallet::LockedBitcoin<T>
2595
2606
  **/
2596
2607
  PalletBitcoinLocksLockedBitcoin: {
2597
2608
  obligationId: string;
@@ -2610,7 +2621,7 @@ declare const _default: {
2610
2621
  isVerified: string;
2611
2622
  };
2612
2623
  /**
2613
- * Lookup368: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
2624
+ * Lookup371: pallet_bitcoin_locks::pallet::LockReleaseRequest<Balance>
2614
2625
  **/
2615
2626
  PalletBitcoinLocksLockReleaseRequest: {
2616
2627
  utxoId: string;
@@ -2622,7 +2633,7 @@ declare const _default: {
2622
2633
  redemptionPrice: string;
2623
2634
  };
2624
2635
  /**
2625
- * Lookup372: pallet_bitcoin_locks::pallet::Error<T>
2636
+ * Lookup375: pallet_bitcoin_locks::pallet::Error<T>
2626
2637
  **/
2627
2638
  PalletBitcoinLocksError: {
2628
2639
  _enum: {
@@ -2659,13 +2670,13 @@ declare const _default: {
2659
2670
  };
2660
2671
  };
2661
2672
  /**
2662
- * Lookup384: pallet_notaries::pallet::Error<T>
2673
+ * Lookup387: pallet_notaries::pallet::Error<T>
2663
2674
  **/
2664
2675
  PalletNotariesError: {
2665
2676
  _enum: string[];
2666
2677
  };
2667
2678
  /**
2668
- * Lookup388: argon_primitives::notary::NotaryNotebookKeyDetails
2679
+ * Lookup391: argon_primitives::notary::NotaryNotebookKeyDetails
2669
2680
  **/
2670
2681
  ArgonPrimitivesNotaryNotaryNotebookKeyDetails: {
2671
2682
  notebookNumber: string;
@@ -2675,13 +2686,13 @@ declare const _default: {
2675
2686
  parentSecret: string;
2676
2687
  };
2677
2688
  /**
2678
- * Lookup391: pallet_notebook::pallet::Error<T>
2689
+ * Lookup394: pallet_notebook::pallet::Error<T>
2679
2690
  **/
2680
2691
  PalletNotebookError: {
2681
2692
  _enum: string[];
2682
2693
  };
2683
2694
  /**
2684
- * Lookup392: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2695
+ * Lookup395: pallet_chain_transfer::QueuedTransferOut<sp_core::crypto::AccountId32, Balance>
2685
2696
  **/
2686
2697
  PalletChainTransferQueuedTransferOut: {
2687
2698
  accountId: string;
@@ -2690,17 +2701,17 @@ declare const _default: {
2690
2701
  notaryId: string;
2691
2702
  };
2692
2703
  /**
2693
- * Lookup398: frame_support::PalletId
2704
+ * Lookup401: frame_support::PalletId
2694
2705
  **/
2695
2706
  FrameSupportPalletId: string;
2696
2707
  /**
2697
- * Lookup399: pallet_chain_transfer::pallet::Error<T>
2708
+ * Lookup402: pallet_chain_transfer::pallet::Error<T>
2698
2709
  **/
2699
2710
  PalletChainTransferError: {
2700
2711
  _enum: string[];
2701
2712
  };
2702
2713
  /**
2703
- * Lookup404: argon_primitives::notary::NotaryNotebookVoteDigestDetails
2714
+ * Lookup407: argon_primitives::notary::NotaryNotebookVoteDigestDetails
2704
2715
  **/
2705
2716
  ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails: {
2706
2717
  notaryId: string;
@@ -2710,25 +2721,25 @@ declare const _default: {
2710
2721
  blockVotingPower: string;
2711
2722
  };
2712
2723
  /**
2713
- * Lookup409: pallet_block_seal_spec::pallet::Error<T>
2724
+ * Lookup412: pallet_block_seal_spec::pallet::Error<T>
2714
2725
  **/
2715
2726
  PalletBlockSealSpecError: {
2716
2727
  _enum: string[];
2717
2728
  };
2718
2729
  /**
2719
- * Lookup411: pallet_domains::pallet::Error<T>
2730
+ * Lookup414: pallet_domains::pallet::Error<T>
2720
2731
  **/
2721
2732
  PalletDomainsError: {
2722
2733
  _enum: string[];
2723
2734
  };
2724
2735
  /**
2725
- * Lookup412: pallet_price_index::pallet::Error<T>
2736
+ * Lookup415: pallet_price_index::pallet::Error<T>
2726
2737
  **/
2727
2738
  PalletPriceIndexError: {
2728
2739
  _enum: string[];
2729
2740
  };
2730
2741
  /**
2731
- * Lookup413: pallet_grandpa::StoredState<N>
2742
+ * Lookup416: pallet_grandpa::StoredState<N>
2732
2743
  **/
2733
2744
  PalletGrandpaStoredState: {
2734
2745
  _enum: {
@@ -2745,7 +2756,7 @@ declare const _default: {
2745
2756
  };
2746
2757
  };
2747
2758
  /**
2748
- * Lookup414: pallet_grandpa::StoredPendingChange<N, Limit>
2759
+ * Lookup417: pallet_grandpa::StoredPendingChange<N, Limit>
2749
2760
  **/
2750
2761
  PalletGrandpaStoredPendingChange: {
2751
2762
  scheduledAt: string;
@@ -2754,13 +2765,13 @@ declare const _default: {
2754
2765
  forced: string;
2755
2766
  };
2756
2767
  /**
2757
- * Lookup417: pallet_grandpa::pallet::Error<T>
2768
+ * Lookup420: pallet_grandpa::pallet::Error<T>
2758
2769
  **/
2759
2770
  PalletGrandpaError: {
2760
2771
  _enum: string[];
2761
2772
  };
2762
2773
  /**
2763
- * Lookup418: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
2774
+ * Lookup421: argon_primitives::providers::BlockSealerInfo<sp_core::crypto::AccountId32>
2764
2775
  **/
2765
2776
  ArgonPrimitivesProvidersBlockSealerInfo: {
2766
2777
  blockAuthorAccountId: string;
@@ -2768,17 +2779,17 @@ declare const _default: {
2768
2779
  blockSealAuthority: string;
2769
2780
  };
2770
2781
  /**
2771
- * Lookup422: pallet_block_seal::pallet::Error<T>
2782
+ * Lookup425: pallet_block_seal::pallet::Error<T>
2772
2783
  **/
2773
2784
  PalletBlockSealError: {
2774
2785
  _enum: string[];
2775
2786
  };
2776
2787
  /**
2777
- * Lookup425: pallet_block_rewards::pallet::Error<T>
2788
+ * Lookup428: pallet_block_rewards::pallet::Error<T>
2778
2789
  **/
2779
2790
  PalletBlockRewardsError: string;
2780
2791
  /**
2781
- * Lookup430: pallet_mint::MintAction<Balance>
2792
+ * Lookup433: pallet_mint::MintAction<Balance>
2782
2793
  **/
2783
2794
  PalletMintMintAction: {
2784
2795
  argonBurned: string;
@@ -2786,13 +2797,13 @@ declare const _default: {
2786
2797
  bitcoinMinted: string;
2787
2798
  };
2788
2799
  /**
2789
- * Lookup431: pallet_mint::pallet::Error<T>
2800
+ * Lookup434: pallet_mint::pallet::Error<T>
2790
2801
  **/
2791
2802
  PalletMintError: {
2792
2803
  _enum: string[];
2793
2804
  };
2794
2805
  /**
2795
- * Lookup433: pallet_balances::types::BalanceLock<Balance>
2806
+ * Lookup436: pallet_balances::types::BalanceLock<Balance>
2796
2807
  **/
2797
2808
  PalletBalancesBalanceLock: {
2798
2809
  id: string;
@@ -2800,27 +2811,27 @@ declare const _default: {
2800
2811
  reasons: string;
2801
2812
  };
2802
2813
  /**
2803
- * Lookup434: pallet_balances::types::Reasons
2814
+ * Lookup437: pallet_balances::types::Reasons
2804
2815
  **/
2805
2816
  PalletBalancesReasons: {
2806
2817
  _enum: string[];
2807
2818
  };
2808
2819
  /**
2809
- * Lookup437: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
2820
+ * Lookup440: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
2810
2821
  **/
2811
2822
  PalletBalancesReserveData: {
2812
2823
  id: string;
2813
2824
  amount: string;
2814
2825
  };
2815
2826
  /**
2816
- * Lookup440: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
2827
+ * Lookup443: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeHoldReason, Balance>
2817
2828
  **/
2818
2829
  FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
2819
2830
  id: string;
2820
2831
  amount: string;
2821
2832
  };
2822
2833
  /**
2823
- * Lookup441: argon_runtime::RuntimeHoldReason
2834
+ * Lookup444: argon_runtime::RuntimeHoldReason
2824
2835
  **/
2825
2836
  ArgonRuntimeRuntimeHoldReason: {
2826
2837
  _enum: {
@@ -2847,38 +2858,38 @@ declare const _default: {
2847
2858
  };
2848
2859
  };
2849
2860
  /**
2850
- * Lookup442: pallet_mining_slot::pallet::HoldReason
2861
+ * Lookup445: pallet_mining_slot::pallet::HoldReason
2851
2862
  **/
2852
2863
  PalletMiningSlotHoldReason: {
2853
2864
  _enum: string[];
2854
2865
  };
2855
2866
  /**
2856
- * Lookup443: pallet_vaults::pallet::HoldReason
2867
+ * Lookup446: pallet_vaults::pallet::HoldReason
2857
2868
  **/
2858
2869
  PalletVaultsHoldReason: {
2859
2870
  _enum: string[];
2860
2871
  };
2861
2872
  /**
2862
- * Lookup444: pallet_bitcoin_locks::pallet::HoldReason
2873
+ * Lookup447: pallet_bitcoin_locks::pallet::HoldReason
2863
2874
  **/
2864
2875
  PalletBitcoinLocksHoldReason: {
2865
2876
  _enum: string[];
2866
2877
  };
2867
2878
  /**
2868
- * Lookup445: pallet_block_rewards::pallet::HoldReason
2879
+ * Lookup448: pallet_block_rewards::pallet::HoldReason
2869
2880
  **/
2870
2881
  PalletBlockRewardsHoldReason: {
2871
2882
  _enum: string[];
2872
2883
  };
2873
2884
  /**
2874
- * Lookup448: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
2885
+ * Lookup451: frame_support::traits::tokens::misc::IdAmount<argon_runtime::RuntimeFreezeReason, Balance>
2875
2886
  **/
2876
2887
  FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
2877
2888
  id: string;
2878
2889
  amount: string;
2879
2890
  };
2880
2891
  /**
2881
- * Lookup449: argon_runtime::RuntimeFreezeReason
2892
+ * Lookup452: argon_runtime::RuntimeFreezeReason
2882
2893
  **/
2883
2894
  ArgonRuntimeRuntimeFreezeReason: {
2884
2895
  _enum: {
@@ -2905,99 +2916,99 @@ declare const _default: {
2905
2916
  };
2906
2917
  };
2907
2918
  /**
2908
- * Lookup450: pallet_block_rewards::pallet::FreezeReason
2919
+ * Lookup453: pallet_block_rewards::pallet::FreezeReason
2909
2920
  **/
2910
2921
  PalletBlockRewardsFreezeReason: {
2911
2922
  _enum: string[];
2912
2923
  };
2913
2924
  /**
2914
- * Lookup452: pallet_balances::pallet::Error<T, I>
2925
+ * Lookup455: pallet_balances::pallet::Error<T, I>
2915
2926
  **/
2916
2927
  PalletBalancesError: {
2917
2928
  _enum: string[];
2918
2929
  };
2919
2930
  /**
2920
- * Lookup454: pallet_tx_pause::pallet::Error<T>
2931
+ * Lookup457: pallet_tx_pause::pallet::Error<T>
2921
2932
  **/
2922
2933
  PalletTxPauseError: {
2923
2934
  _enum: string[];
2924
2935
  };
2925
2936
  /**
2926
- * Lookup455: pallet_transaction_payment::Releases
2937
+ * Lookup458: pallet_transaction_payment::Releases
2927
2938
  **/
2928
2939
  PalletTransactionPaymentReleases: {
2929
2940
  _enum: string[];
2930
2941
  };
2931
2942
  /**
2932
- * Lookup456: pallet_utility::pallet::Error<T>
2943
+ * Lookup459: pallet_utility::pallet::Error<T>
2933
2944
  **/
2934
2945
  PalletUtilityError: {
2935
2946
  _enum: string[];
2936
2947
  };
2937
2948
  /**
2938
- * Lookup457: pallet_sudo::pallet::Error<T>
2949
+ * Lookup460: pallet_sudo::pallet::Error<T>
2939
2950
  **/
2940
2951
  PalletSudoError: {
2941
2952
  _enum: string[];
2942
2953
  };
2943
2954
  /**
2944
- * Lookup458: pallet_ismp::pallet::Error<T>
2955
+ * Lookup461: pallet_ismp::pallet::Error<T>
2945
2956
  **/
2946
2957
  PalletIsmpError: {
2947
2958
  _enum: string[];
2948
2959
  };
2949
2960
  /**
2950
- * Lookup459: pallet_hyperbridge::pallet::Error<T>
2961
+ * Lookup462: pallet_hyperbridge::pallet::Error<T>
2951
2962
  **/
2952
2963
  PalletHyperbridgeError: string;
2953
2964
  /**
2954
- * Lookup461: pallet_token_gateway::pallet::Error<T>
2965
+ * Lookup464: pallet_token_gateway::pallet::Error<T>
2955
2966
  **/
2956
2967
  PalletTokenGatewayError: {
2957
2968
  _enum: string[];
2958
2969
  };
2959
2970
  /**
2960
- * Lookup464: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
2971
+ * Lookup467: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
2961
2972
  **/
2962
2973
  FrameSystemExtensionsCheckNonZeroSender: string;
2963
2974
  /**
2964
- * Lookup465: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
2975
+ * Lookup468: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
2965
2976
  **/
2966
2977
  FrameSystemExtensionsCheckSpecVersion: string;
2967
2978
  /**
2968
- * Lookup466: frame_system::extensions::check_tx_version::CheckTxVersion<T>
2979
+ * Lookup469: frame_system::extensions::check_tx_version::CheckTxVersion<T>
2969
2980
  **/
2970
2981
  FrameSystemExtensionsCheckTxVersion: string;
2971
2982
  /**
2972
- * Lookup467: frame_system::extensions::check_genesis::CheckGenesis<T>
2983
+ * Lookup470: frame_system::extensions::check_genesis::CheckGenesis<T>
2973
2984
  **/
2974
2985
  FrameSystemExtensionsCheckGenesis: string;
2975
2986
  /**
2976
- * Lookup470: frame_system::extensions::check_nonce::CheckNonce<T>
2987
+ * Lookup473: frame_system::extensions::check_nonce::CheckNonce<T>
2977
2988
  **/
2978
2989
  FrameSystemExtensionsCheckNonce: string;
2979
2990
  /**
2980
- * Lookup471: frame_system::extensions::check_weight::CheckWeight<T>
2991
+ * Lookup474: frame_system::extensions::check_weight::CheckWeight<T>
2981
2992
  **/
2982
2993
  FrameSystemExtensionsCheckWeight: string;
2983
2994
  /**
2984
- * Lookup472: pallet_transaction_payment::ChargeTransactionPayment<T>
2995
+ * Lookup475: pallet_transaction_payment::ChargeTransactionPayment<T>
2985
2996
  **/
2986
2997
  PalletTransactionPaymentChargeTransactionPayment: string;
2987
2998
  /**
2988
- * Lookup473: frame_metadata_hash_extension::CheckMetadataHash<T>
2999
+ * Lookup476: frame_metadata_hash_extension::CheckMetadataHash<T>
2989
3000
  **/
2990
3001
  FrameMetadataHashExtensionCheckMetadataHash: {
2991
3002
  mode: string;
2992
3003
  };
2993
3004
  /**
2994
- * Lookup474: frame_metadata_hash_extension::Mode
3005
+ * Lookup477: frame_metadata_hash_extension::Mode
2995
3006
  **/
2996
3007
  FrameMetadataHashExtensionMode: {
2997
3008
  _enum: string[];
2998
3009
  };
2999
3010
  /**
3000
- * Lookup476: argon_runtime::Runtime
3011
+ * Lookup479: argon_runtime::Runtime
3001
3012
  **/
3002
3013
  ArgonRuntimeRuntime: string;
3003
3014
  };