@functionland/react-native-fula 1.41.0 → 1.43.0

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 (92) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +226 -226
  3. package/android/build.gradle +1 -1
  4. package/android/gradle.properties +5 -5
  5. package/android/src/main/AndroidManifest.xml +3 -3
  6. package/android/src/main/AndroidManifestNew.xml +2 -2
  7. package/android/src/main/java/land/fx/fula/ConfigRef.java +7 -7
  8. package/android/src/main/java/land/fx/fula/Cryptography.java +62 -62
  9. package/android/src/main/java/land/fx/fula/FulaModule.java +15 -0
  10. package/android/src/main/java/land/fx/fula/FulaPackage.java +32 -32
  11. package/android/src/main/java/land/fx/fula/SharedPreferenceHelper.java +65 -65
  12. package/android/src/main/java/land/fx/fula/StaticHelper.java +13 -13
  13. package/android/src/main/java/land/fx/fula/ThreadUtils.java +42 -42
  14. package/ios/Cryptography.swift +49 -49
  15. package/ios/Fula-Bridging-Header.h +3 -3
  16. package/ios/Fula.mm +170 -215
  17. package/ios/Fula.swift +1303 -1334
  18. package/ios/UserDataHelper.swift +143 -143
  19. package/lib/commonjs/index.js.map +1 -1
  20. package/lib/commonjs/interfaces/augment-api-errors.js.map +1 -1
  21. package/lib/commonjs/interfaces/augment-api-rpc.js.map +1 -1
  22. package/lib/commonjs/interfaces/augment-api-runtime.js.map +1 -1
  23. package/lib/commonjs/interfaces/augment-api.js.map +1 -1
  24. package/lib/commonjs/interfaces/augment-types.js.map +1 -1
  25. package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
  26. package/lib/commonjs/interfaces/index.js.map +1 -1
  27. package/lib/commonjs/interfaces/lookup.js +278 -278
  28. package/lib/commonjs/interfaces/lookup.js.map +1 -1
  29. package/lib/commonjs/interfaces/registry.js.map +1 -1
  30. package/lib/commonjs/interfaces/types-lookup.js.map +1 -1
  31. package/lib/commonjs/interfaces/types.js.map +1 -1
  32. package/lib/commonjs/protocols/blockchain.js +25 -2
  33. package/lib/commonjs/protocols/blockchain.js.map +1 -1
  34. package/lib/commonjs/protocols/chain-api.js +34 -13
  35. package/lib/commonjs/protocols/chain-api.js.map +1 -1
  36. package/lib/commonjs/protocols/fula.js +106 -106
  37. package/lib/commonjs/protocols/fula.js.map +1 -1
  38. package/lib/commonjs/protocols/fxblox.js +3 -3
  39. package/lib/commonjs/protocols/fxblox.js.map +1 -1
  40. package/lib/commonjs/types/blockchain.js.map +1 -1
  41. package/lib/commonjs/types/fxblox.js.map +1 -1
  42. package/lib/module/index.js.map +1 -1
  43. package/lib/module/interfaces/augment-api-errors.js.map +1 -1
  44. package/lib/module/interfaces/augment-api-rpc.js.map +1 -1
  45. package/lib/module/interfaces/augment-api-runtime.js.map +1 -1
  46. package/lib/module/interfaces/augment-api.js.map +1 -1
  47. package/lib/module/interfaces/augment-types.js.map +1 -1
  48. package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
  49. package/lib/module/interfaces/index.js.map +1 -1
  50. package/lib/module/interfaces/lookup.js +278 -278
  51. package/lib/module/interfaces/lookup.js.map +1 -1
  52. package/lib/module/interfaces/registry.js.map +1 -1
  53. package/lib/module/interfaces/types-lookup.js.map +1 -1
  54. package/lib/module/interfaces/types.js.map +1 -1
  55. package/lib/module/protocols/blockchain.js +22 -0
  56. package/lib/module/protocols/blockchain.js.map +1 -1
  57. package/lib/module/protocols/chain-api.js +30 -11
  58. package/lib/module/protocols/chain-api.js.map +1 -1
  59. package/lib/module/protocols/fula.js +106 -106
  60. package/lib/module/protocols/fula.js.map +1 -1
  61. package/lib/module/protocols/fxblox.js +3 -3
  62. package/lib/module/protocols/fxblox.js.map +1 -1
  63. package/lib/module/types/blockchain.js.map +1 -1
  64. package/lib/module/types/fxblox.js.map +1 -1
  65. package/lib/typescript/interfaces/fulaNativeModule.d.ts +1 -0
  66. package/lib/typescript/interfaces/fulaNativeModule.d.ts.map +1 -1
  67. package/lib/typescript/protocols/blockchain.d.ts +1 -0
  68. package/lib/typescript/protocols/blockchain.d.ts.map +1 -1
  69. package/lib/typescript/protocols/chain-api.d.ts +4 -0
  70. package/lib/typescript/protocols/chain-api.d.ts.map +1 -1
  71. package/lib/typescript/types/blockchain.d.ts +5 -0
  72. package/lib/typescript/types/blockchain.d.ts.map +1 -1
  73. package/package.json +3 -2
  74. package/react-native-fula.podspec +47 -47
  75. package/src/index.tsx +4 -4
  76. package/src/interfaces/augment-api-errors.ts +449 -449
  77. package/src/interfaces/augment-api-rpc.ts +617 -617
  78. package/src/interfaces/augment-api-runtime.ts +224 -224
  79. package/src/interfaces/augment-api.ts +10 -10
  80. package/src/interfaces/augment-types.ts +1230 -1230
  81. package/src/interfaces/fulaNativeModule.ts +1 -0
  82. package/src/interfaces/index.ts +4 -4
  83. package/src/interfaces/lookup.ts +1889 -1889
  84. package/src/interfaces/registry.ts +152 -152
  85. package/src/interfaces/types-lookup.ts +2043 -2043
  86. package/src/interfaces/types.ts +3 -3
  87. package/src/protocols/blockchain.ts +26 -0
  88. package/src/protocols/chain-api.ts +308 -290
  89. package/src/protocols/fula.ts +427 -427
  90. package/src/protocols/fxblox.ts +70 -70
  91. package/src/types/blockchain.ts +6 -0
  92. package/src/types/fxblox.ts +13 -13
@@ -1,152 +1,152 @@
1
- // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
- /* eslint-disable */
3
-
4
- // import type lookup before we augment - in some environments
5
- // this is required to allow for ambient/previous definitions
6
- import '@polkadot/types/types/registry';
7
-
8
- import type { FinalityGrandpaEquivocationPrecommit, FinalityGrandpaEquivocationPrevote, FinalityGrandpaPrecommit, FinalityGrandpaPrevote, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, FulaPoolCall, FulaPoolError, FulaPoolEvent, FulaPoolPool, FulaPoolPoolRequest, FulaPoolUser, FunctionlandFulaCall, FunctionlandFulaChallenge, FunctionlandFulaChallengeState, FunctionlandFulaClaimData, FunctionlandFulaError, FunctionlandFulaEvent, FunctionlandFulaManifest, FunctionlandFulaManifestAvailable, FunctionlandFulaManifestStorageData, FunctionlandFulaManifestWithPoolId, FunctionlandFulaStorerData, FunctionlandFulaUploaderData, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletGrandpaCall, PalletGrandpaError, PalletGrandpaEvent, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpConsensusGrandpaAppPublic, SpConsensusGrandpaAppSignature, SpConsensusGrandpaEquivocation, SpConsensusGrandpaEquivocationProof, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Public, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, SugarfungeAssetAsset, SugarfungeAssetCall, SugarfungeAssetClass, SugarfungeAssetError, SugarfungeAssetEvent, SugarfungeBagBag, SugarfungeBagBagClass, SugarfungeBagCall, SugarfungeBagError, SugarfungeBagEvent, SugarfungeBundleBundle, SugarfungeBundleCall, SugarfungeBundleError, SugarfungeBundleEvent, SugarfungeDaoCall, SugarfungeDaoError, SugarfungeDaoEvent, SugarfungeExgineCall, SugarfungeExgineError, SugarfungeExgineEvent, SugarfungeMarketAmm, SugarfungeMarketAmountOp, SugarfungeMarketAssetRate, SugarfungeMarketCall, SugarfungeMarketError, SugarfungeMarketEvent, SugarfungeMarketMarket, SugarfungeMarketRateAccount, SugarfungeMarketRateAction, SugarfungeMarketRateBalance, SugarfungeRuntimeOpaqueSessionKeys, SugarfungeRuntimeOriginCaller, SugarfungeRuntimeRuntime, SugarfungeValidatorSetCall, SugarfungeValidatorSetError, SugarfungeValidatorSetEvent } from '@polkadot/types/lookup';
9
-
10
- declare module '@polkadot/types/types/registry' {
11
- interface InterfaceTypes {
12
- FinalityGrandpaEquivocationPrecommit: FinalityGrandpaEquivocationPrecommit;
13
- FinalityGrandpaEquivocationPrevote: FinalityGrandpaEquivocationPrevote;
14
- FinalityGrandpaPrecommit: FinalityGrandpaPrecommit;
15
- FinalityGrandpaPrevote: FinalityGrandpaPrevote;
16
- FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
17
- FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
18
- FrameSupportDispatchPays: FrameSupportDispatchPays;
19
- FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
20
- FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
21
- FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
22
- FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
23
- FrameSupportPalletId: FrameSupportPalletId;
24
- FrameSupportPreimagesBounded: FrameSupportPreimagesBounded;
25
- FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
26
- FrameSystemAccountInfo: FrameSystemAccountInfo;
27
- FrameSystemCall: FrameSystemCall;
28
- FrameSystemError: FrameSystemError;
29
- FrameSystemEvent: FrameSystemEvent;
30
- FrameSystemEventRecord: FrameSystemEventRecord;
31
- FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;
32
- FrameSystemExtensionsCheckNonZeroSender: FrameSystemExtensionsCheckNonZeroSender;
33
- FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;
34
- FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;
35
- FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;
36
- FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;
37
- FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;
38
- FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;
39
- FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
40
- FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
41
- FrameSystemPhase: FrameSystemPhase;
42
- FulaPoolCall: FulaPoolCall;
43
- FulaPoolError: FulaPoolError;
44
- FulaPoolEvent: FulaPoolEvent;
45
- FulaPoolPool: FulaPoolPool;
46
- FulaPoolPoolRequest: FulaPoolPoolRequest;
47
- FulaPoolUser: FulaPoolUser;
48
- FunctionlandFulaCall: FunctionlandFulaCall;
49
- FunctionlandFulaChallenge: FunctionlandFulaChallenge;
50
- FunctionlandFulaChallengeState: FunctionlandFulaChallengeState;
51
- FunctionlandFulaClaimData: FunctionlandFulaClaimData;
52
- FunctionlandFulaError: FunctionlandFulaError;
53
- FunctionlandFulaEvent: FunctionlandFulaEvent;
54
- FunctionlandFulaManifest: FunctionlandFulaManifest;
55
- FunctionlandFulaManifestAvailable: FunctionlandFulaManifestAvailable;
56
- FunctionlandFulaManifestStorageData: FunctionlandFulaManifestStorageData;
57
- FunctionlandFulaManifestWithPoolId: FunctionlandFulaManifestWithPoolId;
58
- FunctionlandFulaStorerData: FunctionlandFulaStorerData;
59
- FunctionlandFulaUploaderData: FunctionlandFulaUploaderData;
60
- PalletBalancesAccountData: PalletBalancesAccountData;
61
- PalletBalancesBalanceLock: PalletBalancesBalanceLock;
62
- PalletBalancesCall: PalletBalancesCall;
63
- PalletBalancesError: PalletBalancesError;
64
- PalletBalancesEvent: PalletBalancesEvent;
65
- PalletBalancesIdAmount: PalletBalancesIdAmount;
66
- PalletBalancesReasons: PalletBalancesReasons;
67
- PalletBalancesReserveData: PalletBalancesReserveData;
68
- PalletCollectiveCall: PalletCollectiveCall;
69
- PalletCollectiveError: PalletCollectiveError;
70
- PalletCollectiveEvent: PalletCollectiveEvent;
71
- PalletCollectiveRawOrigin: PalletCollectiveRawOrigin;
72
- PalletCollectiveVotes: PalletCollectiveVotes;
73
- PalletGrandpaCall: PalletGrandpaCall;
74
- PalletGrandpaError: PalletGrandpaError;
75
- PalletGrandpaEvent: PalletGrandpaEvent;
76
- PalletGrandpaStoredPendingChange: PalletGrandpaStoredPendingChange;
77
- PalletGrandpaStoredState: PalletGrandpaStoredState;
78
- PalletSchedulerCall: PalletSchedulerCall;
79
- PalletSchedulerError: PalletSchedulerError;
80
- PalletSchedulerEvent: PalletSchedulerEvent;
81
- PalletSchedulerScheduled: PalletSchedulerScheduled;
82
- PalletSessionCall: PalletSessionCall;
83
- PalletSessionError: PalletSessionError;
84
- PalletSessionEvent: PalletSessionEvent;
85
- PalletSudoCall: PalletSudoCall;
86
- PalletSudoError: PalletSudoError;
87
- PalletSudoEvent: PalletSudoEvent;
88
- PalletTimestampCall: PalletTimestampCall;
89
- PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment;
90
- PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;
91
- PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;
92
- SpArithmeticArithmeticError: SpArithmeticArithmeticError;
93
- SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
94
- SpConsensusGrandpaAppPublic: SpConsensusGrandpaAppPublic;
95
- SpConsensusGrandpaAppSignature: SpConsensusGrandpaAppSignature;
96
- SpConsensusGrandpaEquivocation: SpConsensusGrandpaEquivocation;
97
- SpConsensusGrandpaEquivocationProof: SpConsensusGrandpaEquivocationProof;
98
- SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
99
- SpCoreEcdsaSignature: SpCoreEcdsaSignature;
100
- SpCoreEd25519Public: SpCoreEd25519Public;
101
- SpCoreEd25519Signature: SpCoreEd25519Signature;
102
- SpCoreSr25519Public: SpCoreSr25519Public;
103
- SpCoreSr25519Signature: SpCoreSr25519Signature;
104
- SpCoreVoid: SpCoreVoid;
105
- SpRuntimeDigest: SpRuntimeDigest;
106
- SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
107
- SpRuntimeDispatchError: SpRuntimeDispatchError;
108
- SpRuntimeModuleError: SpRuntimeModuleError;
109
- SpRuntimeMultiSignature: SpRuntimeMultiSignature;
110
- SpRuntimeTokenError: SpRuntimeTokenError;
111
- SpRuntimeTransactionalError: SpRuntimeTransactionalError;
112
- SpVersionRuntimeVersion: SpVersionRuntimeVersion;
113
- SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
114
- SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
115
- SugarfungeAssetAsset: SugarfungeAssetAsset;
116
- SugarfungeAssetCall: SugarfungeAssetCall;
117
- SugarfungeAssetClass: SugarfungeAssetClass;
118
- SugarfungeAssetError: SugarfungeAssetError;
119
- SugarfungeAssetEvent: SugarfungeAssetEvent;
120
- SugarfungeBagBag: SugarfungeBagBag;
121
- SugarfungeBagBagClass: SugarfungeBagBagClass;
122
- SugarfungeBagCall: SugarfungeBagCall;
123
- SugarfungeBagError: SugarfungeBagError;
124
- SugarfungeBagEvent: SugarfungeBagEvent;
125
- SugarfungeBundleBundle: SugarfungeBundleBundle;
126
- SugarfungeBundleCall: SugarfungeBundleCall;
127
- SugarfungeBundleError: SugarfungeBundleError;
128
- SugarfungeBundleEvent: SugarfungeBundleEvent;
129
- SugarfungeDaoCall: SugarfungeDaoCall;
130
- SugarfungeDaoError: SugarfungeDaoError;
131
- SugarfungeDaoEvent: SugarfungeDaoEvent;
132
- SugarfungeExgineCall: SugarfungeExgineCall;
133
- SugarfungeExgineError: SugarfungeExgineError;
134
- SugarfungeExgineEvent: SugarfungeExgineEvent;
135
- SugarfungeMarketAmm: SugarfungeMarketAmm;
136
- SugarfungeMarketAmountOp: SugarfungeMarketAmountOp;
137
- SugarfungeMarketAssetRate: SugarfungeMarketAssetRate;
138
- SugarfungeMarketCall: SugarfungeMarketCall;
139
- SugarfungeMarketError: SugarfungeMarketError;
140
- SugarfungeMarketEvent: SugarfungeMarketEvent;
141
- SugarfungeMarketMarket: SugarfungeMarketMarket;
142
- SugarfungeMarketRateAccount: SugarfungeMarketRateAccount;
143
- SugarfungeMarketRateAction: SugarfungeMarketRateAction;
144
- SugarfungeMarketRateBalance: SugarfungeMarketRateBalance;
145
- SugarfungeRuntimeOpaqueSessionKeys: SugarfungeRuntimeOpaqueSessionKeys;
146
- SugarfungeRuntimeOriginCaller: SugarfungeRuntimeOriginCaller;
147
- SugarfungeRuntimeRuntime: SugarfungeRuntimeRuntime;
148
- SugarfungeValidatorSetCall: SugarfungeValidatorSetCall;
149
- SugarfungeValidatorSetError: SugarfungeValidatorSetError;
150
- SugarfungeValidatorSetEvent: SugarfungeValidatorSetEvent;
151
- } // InterfaceTypes
152
- } // declare module
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
3
+
4
+ // import type lookup before we augment - in some environments
5
+ // this is required to allow for ambient/previous definitions
6
+ import '@polkadot/types/types/registry';
7
+
8
+ import type { FinalityGrandpaEquivocationPrecommit, FinalityGrandpaEquivocationPrevote, FinalityGrandpaPrecommit, FinalityGrandpaPrevote, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, FulaPoolCall, FulaPoolError, FulaPoolEvent, FulaPoolPool, FulaPoolPoolRequest, FulaPoolUser, FunctionlandFulaCall, FunctionlandFulaChallenge, FunctionlandFulaChallengeState, FunctionlandFulaClaimData, FunctionlandFulaError, FunctionlandFulaEvent, FunctionlandFulaManifest, FunctionlandFulaManifestAvailable, FunctionlandFulaManifestStorageData, FunctionlandFulaManifestWithPoolId, FunctionlandFulaStorerData, FunctionlandFulaUploaderData, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletGrandpaCall, PalletGrandpaError, PalletGrandpaEvent, PalletGrandpaStoredPendingChange, PalletGrandpaStoredState, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpConsensusGrandpaAppPublic, SpConsensusGrandpaAppSignature, SpConsensusGrandpaEquivocation, SpConsensusGrandpaEquivocationProof, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Public, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, SugarfungeAssetAsset, SugarfungeAssetCall, SugarfungeAssetClass, SugarfungeAssetError, SugarfungeAssetEvent, SugarfungeBagBag, SugarfungeBagBagClass, SugarfungeBagCall, SugarfungeBagError, SugarfungeBagEvent, SugarfungeBundleBundle, SugarfungeBundleCall, SugarfungeBundleError, SugarfungeBundleEvent, SugarfungeDaoCall, SugarfungeDaoError, SugarfungeDaoEvent, SugarfungeExgineCall, SugarfungeExgineError, SugarfungeExgineEvent, SugarfungeMarketAmm, SugarfungeMarketAmountOp, SugarfungeMarketAssetRate, SugarfungeMarketCall, SugarfungeMarketError, SugarfungeMarketEvent, SugarfungeMarketMarket, SugarfungeMarketRateAccount, SugarfungeMarketRateAction, SugarfungeMarketRateBalance, SugarfungeRuntimeOpaqueSessionKeys, SugarfungeRuntimeOriginCaller, SugarfungeRuntimeRuntime, SugarfungeValidatorSetCall, SugarfungeValidatorSetError, SugarfungeValidatorSetEvent } from '@polkadot/types/lookup';
9
+
10
+ declare module '@polkadot/types/types/registry' {
11
+ interface InterfaceTypes {
12
+ FinalityGrandpaEquivocationPrecommit: FinalityGrandpaEquivocationPrecommit;
13
+ FinalityGrandpaEquivocationPrevote: FinalityGrandpaEquivocationPrevote;
14
+ FinalityGrandpaPrecommit: FinalityGrandpaPrecommit;
15
+ FinalityGrandpaPrevote: FinalityGrandpaPrevote;
16
+ FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;
17
+ FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;
18
+ FrameSupportDispatchPays: FrameSupportDispatchPays;
19
+ FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;
20
+ FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;
21
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
22
+ FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
23
+ FrameSupportPalletId: FrameSupportPalletId;
24
+ FrameSupportPreimagesBounded: FrameSupportPreimagesBounded;
25
+ FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
26
+ FrameSystemAccountInfo: FrameSystemAccountInfo;
27
+ FrameSystemCall: FrameSystemCall;
28
+ FrameSystemError: FrameSystemError;
29
+ FrameSystemEvent: FrameSystemEvent;
30
+ FrameSystemEventRecord: FrameSystemEventRecord;
31
+ FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;
32
+ FrameSystemExtensionsCheckNonZeroSender: FrameSystemExtensionsCheckNonZeroSender;
33
+ FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;
34
+ FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;
35
+ FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;
36
+ FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;
37
+ FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;
38
+ FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;
39
+ FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
40
+ FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
41
+ FrameSystemPhase: FrameSystemPhase;
42
+ FulaPoolCall: FulaPoolCall;
43
+ FulaPoolError: FulaPoolError;
44
+ FulaPoolEvent: FulaPoolEvent;
45
+ FulaPoolPool: FulaPoolPool;
46
+ FulaPoolPoolRequest: FulaPoolPoolRequest;
47
+ FulaPoolUser: FulaPoolUser;
48
+ FunctionlandFulaCall: FunctionlandFulaCall;
49
+ FunctionlandFulaChallenge: FunctionlandFulaChallenge;
50
+ FunctionlandFulaChallengeState: FunctionlandFulaChallengeState;
51
+ FunctionlandFulaClaimData: FunctionlandFulaClaimData;
52
+ FunctionlandFulaError: FunctionlandFulaError;
53
+ FunctionlandFulaEvent: FunctionlandFulaEvent;
54
+ FunctionlandFulaManifest: FunctionlandFulaManifest;
55
+ FunctionlandFulaManifestAvailable: FunctionlandFulaManifestAvailable;
56
+ FunctionlandFulaManifestStorageData: FunctionlandFulaManifestStorageData;
57
+ FunctionlandFulaManifestWithPoolId: FunctionlandFulaManifestWithPoolId;
58
+ FunctionlandFulaStorerData: FunctionlandFulaStorerData;
59
+ FunctionlandFulaUploaderData: FunctionlandFulaUploaderData;
60
+ PalletBalancesAccountData: PalletBalancesAccountData;
61
+ PalletBalancesBalanceLock: PalletBalancesBalanceLock;
62
+ PalletBalancesCall: PalletBalancesCall;
63
+ PalletBalancesError: PalletBalancesError;
64
+ PalletBalancesEvent: PalletBalancesEvent;
65
+ PalletBalancesIdAmount: PalletBalancesIdAmount;
66
+ PalletBalancesReasons: PalletBalancesReasons;
67
+ PalletBalancesReserveData: PalletBalancesReserveData;
68
+ PalletCollectiveCall: PalletCollectiveCall;
69
+ PalletCollectiveError: PalletCollectiveError;
70
+ PalletCollectiveEvent: PalletCollectiveEvent;
71
+ PalletCollectiveRawOrigin: PalletCollectiveRawOrigin;
72
+ PalletCollectiveVotes: PalletCollectiveVotes;
73
+ PalletGrandpaCall: PalletGrandpaCall;
74
+ PalletGrandpaError: PalletGrandpaError;
75
+ PalletGrandpaEvent: PalletGrandpaEvent;
76
+ PalletGrandpaStoredPendingChange: PalletGrandpaStoredPendingChange;
77
+ PalletGrandpaStoredState: PalletGrandpaStoredState;
78
+ PalletSchedulerCall: PalletSchedulerCall;
79
+ PalletSchedulerError: PalletSchedulerError;
80
+ PalletSchedulerEvent: PalletSchedulerEvent;
81
+ PalletSchedulerScheduled: PalletSchedulerScheduled;
82
+ PalletSessionCall: PalletSessionCall;
83
+ PalletSessionError: PalletSessionError;
84
+ PalletSessionEvent: PalletSessionEvent;
85
+ PalletSudoCall: PalletSudoCall;
86
+ PalletSudoError: PalletSudoError;
87
+ PalletSudoEvent: PalletSudoEvent;
88
+ PalletTimestampCall: PalletTimestampCall;
89
+ PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment;
90
+ PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;
91
+ PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;
92
+ SpArithmeticArithmeticError: SpArithmeticArithmeticError;
93
+ SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
94
+ SpConsensusGrandpaAppPublic: SpConsensusGrandpaAppPublic;
95
+ SpConsensusGrandpaAppSignature: SpConsensusGrandpaAppSignature;
96
+ SpConsensusGrandpaEquivocation: SpConsensusGrandpaEquivocation;
97
+ SpConsensusGrandpaEquivocationProof: SpConsensusGrandpaEquivocationProof;
98
+ SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
99
+ SpCoreEcdsaSignature: SpCoreEcdsaSignature;
100
+ SpCoreEd25519Public: SpCoreEd25519Public;
101
+ SpCoreEd25519Signature: SpCoreEd25519Signature;
102
+ SpCoreSr25519Public: SpCoreSr25519Public;
103
+ SpCoreSr25519Signature: SpCoreSr25519Signature;
104
+ SpCoreVoid: SpCoreVoid;
105
+ SpRuntimeDigest: SpRuntimeDigest;
106
+ SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
107
+ SpRuntimeDispatchError: SpRuntimeDispatchError;
108
+ SpRuntimeModuleError: SpRuntimeModuleError;
109
+ SpRuntimeMultiSignature: SpRuntimeMultiSignature;
110
+ SpRuntimeTokenError: SpRuntimeTokenError;
111
+ SpRuntimeTransactionalError: SpRuntimeTransactionalError;
112
+ SpVersionRuntimeVersion: SpVersionRuntimeVersion;
113
+ SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
114
+ SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
115
+ SugarfungeAssetAsset: SugarfungeAssetAsset;
116
+ SugarfungeAssetCall: SugarfungeAssetCall;
117
+ SugarfungeAssetClass: SugarfungeAssetClass;
118
+ SugarfungeAssetError: SugarfungeAssetError;
119
+ SugarfungeAssetEvent: SugarfungeAssetEvent;
120
+ SugarfungeBagBag: SugarfungeBagBag;
121
+ SugarfungeBagBagClass: SugarfungeBagBagClass;
122
+ SugarfungeBagCall: SugarfungeBagCall;
123
+ SugarfungeBagError: SugarfungeBagError;
124
+ SugarfungeBagEvent: SugarfungeBagEvent;
125
+ SugarfungeBundleBundle: SugarfungeBundleBundle;
126
+ SugarfungeBundleCall: SugarfungeBundleCall;
127
+ SugarfungeBundleError: SugarfungeBundleError;
128
+ SugarfungeBundleEvent: SugarfungeBundleEvent;
129
+ SugarfungeDaoCall: SugarfungeDaoCall;
130
+ SugarfungeDaoError: SugarfungeDaoError;
131
+ SugarfungeDaoEvent: SugarfungeDaoEvent;
132
+ SugarfungeExgineCall: SugarfungeExgineCall;
133
+ SugarfungeExgineError: SugarfungeExgineError;
134
+ SugarfungeExgineEvent: SugarfungeExgineEvent;
135
+ SugarfungeMarketAmm: SugarfungeMarketAmm;
136
+ SugarfungeMarketAmountOp: SugarfungeMarketAmountOp;
137
+ SugarfungeMarketAssetRate: SugarfungeMarketAssetRate;
138
+ SugarfungeMarketCall: SugarfungeMarketCall;
139
+ SugarfungeMarketError: SugarfungeMarketError;
140
+ SugarfungeMarketEvent: SugarfungeMarketEvent;
141
+ SugarfungeMarketMarket: SugarfungeMarketMarket;
142
+ SugarfungeMarketRateAccount: SugarfungeMarketRateAccount;
143
+ SugarfungeMarketRateAction: SugarfungeMarketRateAction;
144
+ SugarfungeMarketRateBalance: SugarfungeMarketRateBalance;
145
+ SugarfungeRuntimeOpaqueSessionKeys: SugarfungeRuntimeOpaqueSessionKeys;
146
+ SugarfungeRuntimeOriginCaller: SugarfungeRuntimeOriginCaller;
147
+ SugarfungeRuntimeRuntime: SugarfungeRuntimeRuntime;
148
+ SugarfungeValidatorSetCall: SugarfungeValidatorSetCall;
149
+ SugarfungeValidatorSetError: SugarfungeValidatorSetError;
150
+ SugarfungeValidatorSetEvent: SugarfungeValidatorSetEvent;
151
+ } // InterfaceTypes
152
+ } // declare module