@functionland/react-native-fula 1.55.0 → 1.55.2
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.
- package/LICENSE +20 -20
- package/android/build.gradle +114 -115
- package/android/gradle.properties +8 -8
- package/android/src/main/AndroidManifest.xml +3 -3
- package/android/src/main/AndroidManifestNew.xml +2 -2
- package/android/src/main/java/land/fx/fula/ConfigRef.java +7 -7
- package/android/src/main/java/land/fx/fula/Cryptography.java +62 -62
- package/android/src/main/java/land/fx/fula/FulaModule.java +1991 -1868
- package/android/src/main/java/land/fx/fula/FulaPackage.java +32 -32
- package/android/src/main/java/land/fx/fula/SharedPreferenceHelper.java +65 -65
- package/android/src/main/java/land/fx/fula/StaticHelper.java +13 -13
- package/android/src/main/java/land/fx/fula/ThreadUtils.java +42 -42
- package/ios/Cryptography.swift +59 -59
- package/ios/Fula-Bridging-Header.h +3 -3
- package/ios/UserDataHelper.swift +143 -143
- package/lib/commonjs/index.js +3 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-consts.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-errors.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-events.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-query.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-rpc.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-runtime.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api-tx.js.map +1 -1
- package/lib/commonjs/interfaces/augment-api.js.map +1 -1
- package/lib/commonjs/interfaces/augment-types.js.map +1 -1
- package/lib/commonjs/interfaces/definitions.js.map +1 -1
- package/lib/commonjs/interfaces/defintions.js.map +1 -1
- package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
- package/lib/commonjs/interfaces/index.js.map +1 -1
- package/lib/commonjs/interfaces/lookup.js +300 -300
- package/lib/commonjs/interfaces/lookup.js.map +1 -1
- package/lib/commonjs/interfaces/registry.js.map +1 -1
- package/lib/commonjs/interfaces/types-lookup.js.map +1 -1
- package/lib/commonjs/interfaces/types.js.map +1 -1
- package/lib/commonjs/protocols/blockchain.js +66 -66
- package/lib/commonjs/protocols/blockchain.js.map +1 -1
- package/lib/commonjs/protocols/chain-api.js.map +1 -1
- package/lib/commonjs/protocols/fula.js.map +1 -1
- package/lib/commonjs/protocols/fx-ai.js +161 -0
- package/lib/commonjs/protocols/fx-ai.js.map +1 -0
- package/lib/commonjs/protocols/fxblox.js +3 -3
- package/lib/commonjs/protocols/fxblox.js.map +1 -1
- package/lib/commonjs/types/blockchain.js.map +1 -1
- package/lib/commonjs/types/fxblox.js.map +1 -1
- package/lib/module/index.js +1 -0
- package/lib/module/index.js.map +1 -1
- package/lib/module/interfaces/augment-api-consts.js.map +1 -1
- package/lib/module/interfaces/augment-api-errors.js.map +1 -1
- package/lib/module/interfaces/augment-api-events.js.map +1 -1
- package/lib/module/interfaces/augment-api-query.js.map +1 -1
- package/lib/module/interfaces/augment-api-rpc.js.map +1 -1
- package/lib/module/interfaces/augment-api-runtime.js.map +1 -1
- package/lib/module/interfaces/augment-api-tx.js.map +1 -1
- package/lib/module/interfaces/augment-api.js.map +1 -1
- package/lib/module/interfaces/augment-types.js.map +1 -1
- package/lib/module/interfaces/definitions.js.map +1 -1
- package/lib/module/interfaces/defintions.js.map +1 -1
- package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
- package/lib/module/interfaces/index.js.map +1 -1
- package/lib/module/interfaces/lookup.js +300 -300
- package/lib/module/interfaces/lookup.js.map +1 -1
- package/lib/module/interfaces/registry.js.map +1 -1
- package/lib/module/interfaces/types-lookup.js.map +1 -1
- package/lib/module/interfaces/types.js.map +1 -1
- package/lib/module/protocols/blockchain.js +66 -66
- package/lib/module/protocols/blockchain.js.map +1 -1
- package/lib/module/protocols/chain-api.js.map +1 -1
- package/lib/module/protocols/fula.js.map +1 -1
- package/lib/module/protocols/fx-ai.js +150 -0
- package/lib/module/protocols/fx-ai.js.map +1 -0
- package/lib/module/protocols/fxblox.js +3 -3
- package/lib/module/protocols/fxblox.js.map +1 -1
- package/lib/module/types/blockchain.js.map +1 -1
- package/lib/module/types/fxblox.js.map +1 -1
- package/package.json +176 -176
- package/react-native-fula.podspec +47 -47
- package/src/index.tsx +5 -4
- package/src/interfaces/augment-api-consts.ts +273 -273
- package/src/interfaces/augment-api-errors.ts +474 -474
- package/src/interfaces/augment-api-events.ts +448 -448
- package/src/interfaces/augment-api-query.ts +466 -466
- package/src/interfaces/augment-api-rpc.ts +617 -617
- package/src/interfaces/augment-api-runtime.ts +223 -223
- package/src/interfaces/augment-api-tx.ts +709 -709
- package/src/interfaces/augment-api.ts +9 -9
- package/src/interfaces/augment-types.ts +1322 -1322
- package/src/interfaces/definitions.ts +1 -1
- package/src/interfaces/defintions.ts +1 -1
- package/src/interfaces/fulaNativeModule.ts +175 -168
- package/src/interfaces/index.ts +3 -3
- package/src/interfaces/lookup.ts +2011 -2011
- package/src/interfaces/registry.ts +163 -163
- package/src/interfaces/types-lookup.ts +2165 -2165
- package/src/interfaces/types.ts +2 -2
- package/src/protocols/blockchain.ts +644 -644
- package/src/protocols/fx-ai.ts +182 -0
- package/src/protocols/fxblox.ts +443 -443
|
@@ -1,163 +1,163 @@
|
|
|
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, PalletImOnlineBoundedOpaqueNetworkState, PalletImOnlineCall, PalletImOnlineError, PalletImOnlineEvent, PalletImOnlineHeartbeat, PalletImOnlineSr25519AppSr25519Public, PalletImOnlineSr25519AppSr25519Signature, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpConsensusGrandpaAppPublic, SpConsensusGrandpaAppSignature, SpConsensusGrandpaEquivocation, SpConsensusGrandpaEquivocationProof, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Public, SpCoreEd25519Signature, SpCoreOffchainOpaqueNetworkState, 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
|
-
PalletImOnlineBoundedOpaqueNetworkState: PalletImOnlineBoundedOpaqueNetworkState;
|
|
79
|
-
PalletImOnlineCall: PalletImOnlineCall;
|
|
80
|
-
PalletImOnlineError: PalletImOnlineError;
|
|
81
|
-
PalletImOnlineEvent: PalletImOnlineEvent;
|
|
82
|
-
PalletImOnlineHeartbeat: PalletImOnlineHeartbeat;
|
|
83
|
-
PalletImOnlineSr25519AppSr25519Public: PalletImOnlineSr25519AppSr25519Public;
|
|
84
|
-
PalletImOnlineSr25519AppSr25519Signature: PalletImOnlineSr25519AppSr25519Signature;
|
|
85
|
-
PalletSchedulerCall: PalletSchedulerCall;
|
|
86
|
-
PalletSchedulerError: PalletSchedulerError;
|
|
87
|
-
PalletSchedulerEvent: PalletSchedulerEvent;
|
|
88
|
-
PalletSchedulerScheduled: PalletSchedulerScheduled;
|
|
89
|
-
PalletSessionCall: PalletSessionCall;
|
|
90
|
-
PalletSessionError: PalletSessionError;
|
|
91
|
-
PalletSessionEvent: PalletSessionEvent;
|
|
92
|
-
PalletSudoCall: PalletSudoCall;
|
|
93
|
-
PalletSudoError: PalletSudoError;
|
|
94
|
-
PalletSudoEvent: PalletSudoEvent;
|
|
95
|
-
PalletTimestampCall: PalletTimestampCall;
|
|
96
|
-
PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment;
|
|
97
|
-
PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;
|
|
98
|
-
PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;
|
|
99
|
-
PalletUtilityCall: PalletUtilityCall;
|
|
100
|
-
PalletUtilityError: PalletUtilityError;
|
|
101
|
-
PalletUtilityEvent: PalletUtilityEvent;
|
|
102
|
-
SpArithmeticArithmeticError: SpArithmeticArithmeticError;
|
|
103
|
-
SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
|
|
104
|
-
SpConsensusGrandpaAppPublic: SpConsensusGrandpaAppPublic;
|
|
105
|
-
SpConsensusGrandpaAppSignature: SpConsensusGrandpaAppSignature;
|
|
106
|
-
SpConsensusGrandpaEquivocation: SpConsensusGrandpaEquivocation;
|
|
107
|
-
SpConsensusGrandpaEquivocationProof: SpConsensusGrandpaEquivocationProof;
|
|
108
|
-
SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
|
|
109
|
-
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
|
|
110
|
-
SpCoreEd25519Public: SpCoreEd25519Public;
|
|
111
|
-
SpCoreEd25519Signature: SpCoreEd25519Signature;
|
|
112
|
-
SpCoreOffchainOpaqueNetworkState: SpCoreOffchainOpaqueNetworkState;
|
|
113
|
-
SpCoreSr25519Public: SpCoreSr25519Public;
|
|
114
|
-
SpCoreSr25519Signature: SpCoreSr25519Signature;
|
|
115
|
-
SpCoreVoid: SpCoreVoid;
|
|
116
|
-
SpRuntimeDigest: SpRuntimeDigest;
|
|
117
|
-
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
|
|
118
|
-
SpRuntimeDispatchError: SpRuntimeDispatchError;
|
|
119
|
-
SpRuntimeModuleError: SpRuntimeModuleError;
|
|
120
|
-
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
|
|
121
|
-
SpRuntimeTokenError: SpRuntimeTokenError;
|
|
122
|
-
SpRuntimeTransactionalError: SpRuntimeTransactionalError;
|
|
123
|
-
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
|
|
124
|
-
SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
|
|
125
|
-
SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
|
|
126
|
-
SugarfungeAssetAsset: SugarfungeAssetAsset;
|
|
127
|
-
SugarfungeAssetCall: SugarfungeAssetCall;
|
|
128
|
-
SugarfungeAssetClass: SugarfungeAssetClass;
|
|
129
|
-
SugarfungeAssetError: SugarfungeAssetError;
|
|
130
|
-
SugarfungeAssetEvent: SugarfungeAssetEvent;
|
|
131
|
-
SugarfungeBagBag: SugarfungeBagBag;
|
|
132
|
-
SugarfungeBagBagClass: SugarfungeBagBagClass;
|
|
133
|
-
SugarfungeBagCall: SugarfungeBagCall;
|
|
134
|
-
SugarfungeBagError: SugarfungeBagError;
|
|
135
|
-
SugarfungeBagEvent: SugarfungeBagEvent;
|
|
136
|
-
SugarfungeBundleBundle: SugarfungeBundleBundle;
|
|
137
|
-
SugarfungeBundleCall: SugarfungeBundleCall;
|
|
138
|
-
SugarfungeBundleError: SugarfungeBundleError;
|
|
139
|
-
SugarfungeBundleEvent: SugarfungeBundleEvent;
|
|
140
|
-
SugarfungeDaoCall: SugarfungeDaoCall;
|
|
141
|
-
SugarfungeDaoError: SugarfungeDaoError;
|
|
142
|
-
SugarfungeDaoEvent: SugarfungeDaoEvent;
|
|
143
|
-
SugarfungeExgineCall: SugarfungeExgineCall;
|
|
144
|
-
SugarfungeExgineError: SugarfungeExgineError;
|
|
145
|
-
SugarfungeExgineEvent: SugarfungeExgineEvent;
|
|
146
|
-
SugarfungeMarketAmm: SugarfungeMarketAmm;
|
|
147
|
-
SugarfungeMarketAmountOp: SugarfungeMarketAmountOp;
|
|
148
|
-
SugarfungeMarketAssetRate: SugarfungeMarketAssetRate;
|
|
149
|
-
SugarfungeMarketCall: SugarfungeMarketCall;
|
|
150
|
-
SugarfungeMarketError: SugarfungeMarketError;
|
|
151
|
-
SugarfungeMarketEvent: SugarfungeMarketEvent;
|
|
152
|
-
SugarfungeMarketMarket: SugarfungeMarketMarket;
|
|
153
|
-
SugarfungeMarketRateAccount: SugarfungeMarketRateAccount;
|
|
154
|
-
SugarfungeMarketRateAction: SugarfungeMarketRateAction;
|
|
155
|
-
SugarfungeMarketRateBalance: SugarfungeMarketRateBalance;
|
|
156
|
-
SugarfungeRuntimeOpaqueSessionKeys: SugarfungeRuntimeOpaqueSessionKeys;
|
|
157
|
-
SugarfungeRuntimeOriginCaller: SugarfungeRuntimeOriginCaller;
|
|
158
|
-
SugarfungeRuntimeRuntime: SugarfungeRuntimeRuntime;
|
|
159
|
-
SugarfungeValidatorSetCall: SugarfungeValidatorSetCall;
|
|
160
|
-
SugarfungeValidatorSetError: SugarfungeValidatorSetError;
|
|
161
|
-
SugarfungeValidatorSetEvent: SugarfungeValidatorSetEvent;
|
|
162
|
-
} // InterfaceTypes
|
|
163
|
-
} // 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, PalletImOnlineBoundedOpaqueNetworkState, PalletImOnlineCall, PalletImOnlineError, PalletImOnlineEvent, PalletImOnlineHeartbeat, PalletImOnlineSr25519AppSr25519Public, PalletImOnlineSr25519AppSr25519Signature, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpConsensusGrandpaAppPublic, SpConsensusGrandpaAppSignature, SpConsensusGrandpaEquivocation, SpConsensusGrandpaEquivocationProof, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Public, SpCoreEd25519Signature, SpCoreOffchainOpaqueNetworkState, 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
|
+
PalletImOnlineBoundedOpaqueNetworkState: PalletImOnlineBoundedOpaqueNetworkState;
|
|
79
|
+
PalletImOnlineCall: PalletImOnlineCall;
|
|
80
|
+
PalletImOnlineError: PalletImOnlineError;
|
|
81
|
+
PalletImOnlineEvent: PalletImOnlineEvent;
|
|
82
|
+
PalletImOnlineHeartbeat: PalletImOnlineHeartbeat;
|
|
83
|
+
PalletImOnlineSr25519AppSr25519Public: PalletImOnlineSr25519AppSr25519Public;
|
|
84
|
+
PalletImOnlineSr25519AppSr25519Signature: PalletImOnlineSr25519AppSr25519Signature;
|
|
85
|
+
PalletSchedulerCall: PalletSchedulerCall;
|
|
86
|
+
PalletSchedulerError: PalletSchedulerError;
|
|
87
|
+
PalletSchedulerEvent: PalletSchedulerEvent;
|
|
88
|
+
PalletSchedulerScheduled: PalletSchedulerScheduled;
|
|
89
|
+
PalletSessionCall: PalletSessionCall;
|
|
90
|
+
PalletSessionError: PalletSessionError;
|
|
91
|
+
PalletSessionEvent: PalletSessionEvent;
|
|
92
|
+
PalletSudoCall: PalletSudoCall;
|
|
93
|
+
PalletSudoError: PalletSudoError;
|
|
94
|
+
PalletSudoEvent: PalletSudoEvent;
|
|
95
|
+
PalletTimestampCall: PalletTimestampCall;
|
|
96
|
+
PalletTransactionPaymentChargeTransactionPayment: PalletTransactionPaymentChargeTransactionPayment;
|
|
97
|
+
PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;
|
|
98
|
+
PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;
|
|
99
|
+
PalletUtilityCall: PalletUtilityCall;
|
|
100
|
+
PalletUtilityError: PalletUtilityError;
|
|
101
|
+
PalletUtilityEvent: PalletUtilityEvent;
|
|
102
|
+
SpArithmeticArithmeticError: SpArithmeticArithmeticError;
|
|
103
|
+
SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
|
|
104
|
+
SpConsensusGrandpaAppPublic: SpConsensusGrandpaAppPublic;
|
|
105
|
+
SpConsensusGrandpaAppSignature: SpConsensusGrandpaAppSignature;
|
|
106
|
+
SpConsensusGrandpaEquivocation: SpConsensusGrandpaEquivocation;
|
|
107
|
+
SpConsensusGrandpaEquivocationProof: SpConsensusGrandpaEquivocationProof;
|
|
108
|
+
SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
|
|
109
|
+
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
|
|
110
|
+
SpCoreEd25519Public: SpCoreEd25519Public;
|
|
111
|
+
SpCoreEd25519Signature: SpCoreEd25519Signature;
|
|
112
|
+
SpCoreOffchainOpaqueNetworkState: SpCoreOffchainOpaqueNetworkState;
|
|
113
|
+
SpCoreSr25519Public: SpCoreSr25519Public;
|
|
114
|
+
SpCoreSr25519Signature: SpCoreSr25519Signature;
|
|
115
|
+
SpCoreVoid: SpCoreVoid;
|
|
116
|
+
SpRuntimeDigest: SpRuntimeDigest;
|
|
117
|
+
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
|
|
118
|
+
SpRuntimeDispatchError: SpRuntimeDispatchError;
|
|
119
|
+
SpRuntimeModuleError: SpRuntimeModuleError;
|
|
120
|
+
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
|
|
121
|
+
SpRuntimeTokenError: SpRuntimeTokenError;
|
|
122
|
+
SpRuntimeTransactionalError: SpRuntimeTransactionalError;
|
|
123
|
+
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
|
|
124
|
+
SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
|
|
125
|
+
SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;
|
|
126
|
+
SugarfungeAssetAsset: SugarfungeAssetAsset;
|
|
127
|
+
SugarfungeAssetCall: SugarfungeAssetCall;
|
|
128
|
+
SugarfungeAssetClass: SugarfungeAssetClass;
|
|
129
|
+
SugarfungeAssetError: SugarfungeAssetError;
|
|
130
|
+
SugarfungeAssetEvent: SugarfungeAssetEvent;
|
|
131
|
+
SugarfungeBagBag: SugarfungeBagBag;
|
|
132
|
+
SugarfungeBagBagClass: SugarfungeBagBagClass;
|
|
133
|
+
SugarfungeBagCall: SugarfungeBagCall;
|
|
134
|
+
SugarfungeBagError: SugarfungeBagError;
|
|
135
|
+
SugarfungeBagEvent: SugarfungeBagEvent;
|
|
136
|
+
SugarfungeBundleBundle: SugarfungeBundleBundle;
|
|
137
|
+
SugarfungeBundleCall: SugarfungeBundleCall;
|
|
138
|
+
SugarfungeBundleError: SugarfungeBundleError;
|
|
139
|
+
SugarfungeBundleEvent: SugarfungeBundleEvent;
|
|
140
|
+
SugarfungeDaoCall: SugarfungeDaoCall;
|
|
141
|
+
SugarfungeDaoError: SugarfungeDaoError;
|
|
142
|
+
SugarfungeDaoEvent: SugarfungeDaoEvent;
|
|
143
|
+
SugarfungeExgineCall: SugarfungeExgineCall;
|
|
144
|
+
SugarfungeExgineError: SugarfungeExgineError;
|
|
145
|
+
SugarfungeExgineEvent: SugarfungeExgineEvent;
|
|
146
|
+
SugarfungeMarketAmm: SugarfungeMarketAmm;
|
|
147
|
+
SugarfungeMarketAmountOp: SugarfungeMarketAmountOp;
|
|
148
|
+
SugarfungeMarketAssetRate: SugarfungeMarketAssetRate;
|
|
149
|
+
SugarfungeMarketCall: SugarfungeMarketCall;
|
|
150
|
+
SugarfungeMarketError: SugarfungeMarketError;
|
|
151
|
+
SugarfungeMarketEvent: SugarfungeMarketEvent;
|
|
152
|
+
SugarfungeMarketMarket: SugarfungeMarketMarket;
|
|
153
|
+
SugarfungeMarketRateAccount: SugarfungeMarketRateAccount;
|
|
154
|
+
SugarfungeMarketRateAction: SugarfungeMarketRateAction;
|
|
155
|
+
SugarfungeMarketRateBalance: SugarfungeMarketRateBalance;
|
|
156
|
+
SugarfungeRuntimeOpaqueSessionKeys: SugarfungeRuntimeOpaqueSessionKeys;
|
|
157
|
+
SugarfungeRuntimeOriginCaller: SugarfungeRuntimeOriginCaller;
|
|
158
|
+
SugarfungeRuntimeRuntime: SugarfungeRuntimeRuntime;
|
|
159
|
+
SugarfungeValidatorSetCall: SugarfungeValidatorSetCall;
|
|
160
|
+
SugarfungeValidatorSetError: SugarfungeValidatorSetError;
|
|
161
|
+
SugarfungeValidatorSetEvent: SugarfungeValidatorSetEvent;
|
|
162
|
+
} // InterfaceTypes
|
|
163
|
+
} // declare module
|