@@ -10,10 +10,9 @@ import {
10
10
mapLookupToTypedef ,
11
11
valueIsCompatibleWithDest ,
12
12
} from "@polkadot-api/metadata-compatibility"
13
- import {
14
- type ChainHead$ ,
15
- getObservableClient ,
16
- type RuntimeContext ,
13
+ import type {
14
+ ChainHead$ ,
15
+ RuntimeContext ,
17
16
} from "@polkadot-api/observable-client"
18
17
import { Tuple , Vector } from "@polkadot-api/substrate-bindings"
19
18
import { Observable , combineLatest , filter , firstValueFrom , map } from "rxjs"
@@ -70,7 +69,7 @@ const TypesCodec = Tuple(EntryPointsCodec, TypedefsCodec)
70
69
71
70
export const createCompatibilityToken = < D extends ChainDefinition > (
72
71
chainDefinition : D ,
73
- chainHead : ReturnType < ReturnType < typeof getObservableClient > [ "chainHead$" ] > ,
72
+ chainHead : ChainHead$ ,
74
73
) : Promise < CompatibilityToken < D > > => {
75
74
const awaitedRuntime = new Promise < ( ) => RuntimeContext > ( async ( resolve ) => {
76
75
const loadedRuntime$ = chainHead . runtime$ . pipe ( filter ( ( v ) => v != null ) )
@@ -90,10 +89,18 @@ export const createCompatibilityToken = <D extends ChainDefinition>(
90
89
compatibilityTokenApi . set ( token , {
91
90
runtime,
92
91
getPalletEntryPoint ( opType , pallet , name ) {
93
- return entryPoints [ descriptors [ opType ] [ pallet ] [ name ] ]
92
+ const idx = descriptors [ opType ] ?. [ pallet ] ?. [ name ]
93
+ if ( idx == null )
94
+ throw new Error (
95
+ `Descriptor for ${ opType } ${ pallet } .${ name } does not exist` ,
96
+ )
97
+ return entryPoints [ idx ]
94
98
} ,
95
99
getApiEntryPoint ( name , method ) {
96
- return entryPoints [ descriptors . apis [ name ] [ method ] ]
100
+ const idx = descriptors . apis ?. [ name ] ?. [ method ]
101
+ if ( idx == null )
102
+ throw new Error ( `Descriptor for API ${ name } .${ method } does not exist` )
103
+ return entryPoints [ idx ]
97
104
} ,
98
105
typedefNodes,
99
106
} )
@@ -105,7 +112,7 @@ export const createCompatibilityToken = <D extends ChainDefinition>(
105
112
}
106
113
107
114
export const createRuntimeToken = < D > (
108
- chainHead : ReturnType < ReturnType < typeof getObservableClient > [ "chainHead$" ] > ,
115
+ chainHead : ChainHead$ ,
109
116
) : Promise < RuntimeToken < D > > => {
110
117
const awaitedRuntime = new Promise < ( ) => RuntimeContext > ( async ( resolve ) => {
111
118
const loadedRuntime$ = chainHead . runtime$ . pipe ( filter ( ( v ) => v != null ) )
@@ -149,7 +156,7 @@ const getMetadataCache = (ctx: RuntimeContext) => {
149
156
export const compatibilityHelper = (
150
157
descriptors : Promise < RuntimeToken | CompatibilityToken > ,
151
158
getDescriptorEntryPoint : ( descriptorApi : CompatibilityTokenApi ) => EntryPoint ,
152
- getRuntimeEntryPoint : ( ctx : RuntimeContext ) => EntryPoint ,
159
+ getRuntimeEntryPoint : ( ctx : RuntimeContext ) => EntryPoint | null ,
153
160
) => {
154
161
const getRuntimeTypedef = ( ctx : RuntimeContext , id : number ) => {
155
162
const cache = getMetadataCache ( ctx )
@@ -176,6 +183,11 @@ export const compatibilityHelper = (
176
183
ctx ||= compatibilityApi . runtime ( )
177
184
const descriptorEntryPoint = getDescriptorEntryPoint ( compatibilityApi )
178
185
const runtimeEntryPoint = getRuntimeEntryPoint ( ctx )
186
+ if ( runtimeEntryPoint == null )
187
+ return {
188
+ args : CompatibilityLevel . Incompatible ,
189
+ values : CompatibilityLevel . Incompatible ,
190
+ }
179
191
const descriptorNodes = compatibilityApi . typedefNodes
180
192
181
193
const cache = getMetadataCache ( ctx )
@@ -198,9 +210,8 @@ export const compatibilityHelper = (
198
210
getCompatibilityLevel ( runtime ) >= threshold ,
199
211
)
200
212
201
- const waitDescriptors = ( ) => descriptors
202
213
const compatibleRuntime$ = ( chainHead : ChainHead$ , hash : string | null ) =>
203
- combineLatest ( [ waitDescriptors ( ) , chainHead . getRuntimeContext$ ( hash ) ] )
214
+ combineLatest ( [ descriptors , chainHead . getRuntimeContext$ ( hash ) ] )
204
215
205
216
const withCompatibleRuntime =
206
217
< T > ( chainHead : ChainHead$ , mapper : ( x : T ) => string ) =>
@@ -209,7 +220,7 @@ export const compatibilityHelper = (
209
220
) : Observable < [ T , CompatibilityToken | RuntimeToken , RuntimeContext ] > =>
210
221
combineLatest ( [
211
222
source$ . pipe ( chainHead . withRuntime ( mapper ) ) ,
212
- waitDescriptors ( ) ,
223
+ descriptors ,
213
224
] ) . pipe ( map ( ( [ [ x , ctx ] , descriptors ] ) => [ x , descriptors , ctx ] ) )
214
225
215
226
const argsAreCompatible = (
@@ -225,6 +236,7 @@ export const compatibilityHelper = (
225
236
if ( levels . values === CompatibilityLevel . Incompatible ) return false
226
237
227
238
const entryPoint = getRuntimeEntryPoint ( ctx )
239
+ if ( entryPoint == null ) return false
228
240
229
241
return valueIsCompatibleWithDest (
230
242
entryPoint . args ,
@@ -257,7 +269,7 @@ export const compatibilityHelper = (
257
269
isCompatible,
258
270
getCompatibilityLevel,
259
271
getCompatibilityLevels,
260
- waitDescriptors ,
272
+ descriptors ,
261
273
withCompatibleRuntime,
262
274
compatibleRuntime$,
263
275
argsAreCompatible,
0 commit comments