@polkadot-api/metadata-builders
Advanced tools
Comparing version 0.0.1-9f22b6da3cc55925307b9899d8e56d4923ba2f0d.1.0 to 0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0
import * as scale from '@polkadot-api/substrate-bindings'; | ||
import { StringRecord, V14, Codec, Decoder, HexString } from '@polkadot-api/substrate-bindings'; | ||
export { Decoder, HexString, StringRecord, V14 } from '@polkadot-api/substrate-bindings'; | ||
import { StringRecord, V15, Codec, Decoder, HexString } from '@polkadot-api/substrate-bindings'; | ||
export { Decoder, HexString, StringRecord, V15 } from '@polkadot-api/substrate-bindings'; | ||
@@ -21,3 +21,6 @@ type VoidVar = { | ||
}; | ||
type TerminalVar = PrimitiveVar | CompactVar | BitSequenceVar; | ||
type AccountId32 = { | ||
type: "AccountId32"; | ||
}; | ||
type TerminalVar = PrimitiveVar | CompactVar | BitSequenceVar | AccountId32; | ||
type TupleVar = { | ||
@@ -40,2 +43,13 @@ type: "tuple"; | ||
}; | ||
type OptionVar = { | ||
type: "option"; | ||
value: LookupEntry; | ||
}; | ||
type ResultVar = { | ||
type: "result"; | ||
value: { | ||
ok: LookupEntry; | ||
ko: LookupEntry; | ||
}; | ||
}; | ||
type SequenceVar = { | ||
@@ -50,3 +64,3 @@ type: "sequence"; | ||
}; | ||
type ComposedVar = TupleVar | StructVar | SequenceVar | ArrayVar | EnumVar; | ||
type ComposedVar = TupleVar | StructVar | SequenceVar | ArrayVar | OptionVar | ResultVar | EnumVar; | ||
type Var = TerminalVar | ComposedVar; | ||
@@ -174,3 +188,3 @@ type LookupEntry = { | ||
} | ||
declare const getStaticBuilder: (metadata: V14, namespace: string) => { | ||
declare const getStaticBuilder: (metadata: V15, namespace: string) => { | ||
buildDefinition: (id: number) => string; | ||
@@ -184,2 +198,6 @@ buildStorage: (pallet: string, entry: string) => { | ||
buildCall: (pallet: string, name: string) => string; | ||
buildRuntimeCall: (api: string, method: string) => { | ||
args: string; | ||
value: string; | ||
}; | ||
buildConstant: (pallet: string, constantName: string) => string; | ||
@@ -191,3 +209,3 @@ getTypeFromVarName: (varName: string) => string; | ||
declare const getDynamicBuilder: (metadata: V14) => { | ||
declare const getDynamicBuilder: (metadata: V15) => { | ||
buildDefinition: (id: number) => Codec<any>; | ||
@@ -215,2 +233,6 @@ buildStorage: (pallet: string, entry: string) => { | ||
}; | ||
buildRuntimeCall: (api: string, method: string) => { | ||
args: Codec<any[]>; | ||
value: Codec<any>; | ||
}; | ||
buildCall: (pallet: string, name: string) => { | ||
@@ -227,4 +249,5 @@ args: Codec<any>; | ||
declare const getChecksumBuilder: (metadata: V14) => { | ||
declare const getChecksumBuilder: (metadata: V15) => { | ||
buildDefinition: (id: number) => string | null; | ||
buildRuntimeCall: (api: string, method: string) => string | null; | ||
buildStorage: (pallet: string, entry: string) => string | null; | ||
@@ -245,3 +268,3 @@ buildCall: (pallet: string, name: string) => string | null; | ||
}; | ||
type GetViewBuilder = (metadata: V14) => { | ||
type GetViewBuilder = (metadata: V15) => { | ||
buildDefinition: (idx: number) => { | ||
@@ -334,2 +357,13 @@ shape: Shape; | ||
}>; | ||
type OptionDecoded = WithInputAndPath<{ | ||
codec: "Option"; | ||
value: Decoded; | ||
}>; | ||
type ResultDecoded = WithInputAndPath<{ | ||
codec: "Result"; | ||
value: { | ||
ok: Decoded; | ||
ko: Decoded; | ||
}; | ||
}>; | ||
type TupleDecoded = WithInputAndPath<{ | ||
@@ -353,3 +387,3 @@ codec: "Tuple"; | ||
}>; | ||
type ComplexDecoded = SequenceDecoded | ArrayDecoded | TupleDecoded | StructDecoded | EnumDecoded; | ||
type ComplexDecoded = SequenceDecoded | ArrayDecoded | TupleDecoded | StructDecoded | OptionDecoded | ResultDecoded | EnumDecoded; | ||
type Decoded = PrimitiveDecoded | ComplexDecoded; | ||
@@ -373,2 +407,13 @@ interface SequenceShape { | ||
} | ||
interface OptionShape { | ||
codec: "Option"; | ||
shape: Shape; | ||
} | ||
interface ResultShape { | ||
codec: "Result"; | ||
shape: { | ||
ok: Shape; | ||
ko: Shape; | ||
}; | ||
} | ||
interface EnumShape { | ||
@@ -378,3 +423,3 @@ codec: "Enum"; | ||
} | ||
type ComplexShape = SequenceShape | ArrayShape | TupleShape | StructShape | EnumShape; | ||
type ComplexShape = SequenceShape | ArrayShape | TupleShape | StructShape | OptionShape | ResultShape | EnumShape; | ||
type Shape = { | ||
@@ -386,2 +431,2 @@ codec: PrimitiveDecoded["codec"]; | ||
export { type AccountIdDecoded, type ArrayDecoded, type ArrayShape, type ArrayVar, type BigNumberDecoded, type BitSequenceDecoded, type BitSequenceVar, type BoolDecoded, type BytesArrayDecoded, type BytesSequenceDecoded, type CodeDeclarations, type CompactVar, type ComplexDecoded, type ComplexShape, type ComposedVar, type Decoded, type DecodedCall, type EnumDecoded, type EnumShape, type EnumVar, type GetViewBuilder, type LookupEntry, type MetadataPrimitives$1 as MetadataPrimitives, type NumberDecoded, type PrimitiveDecoded, type PrimitiveVar, type SequenceDecoded, type SequenceShape, type SequenceVar, type Shape, type StringDecoded, type StructDecoded, type StructShape, type StructVar, type TerminalVar, type TupleDecoded, type TupleShape, type TupleVar, type UnshapedDecoder, type Var, type Variable, type VoidDecoded, type VoidVar, getChecksumBuilder, getDynamicBuilder, getLookupFn, getStaticBuilder, getViewBuilder, primitiveTypes }; | ||
export { type AccountId32, type AccountIdDecoded, type ArrayDecoded, type ArrayShape, type ArrayVar, type BigNumberDecoded, type BitSequenceDecoded, type BitSequenceVar, type BoolDecoded, type BytesArrayDecoded, type BytesSequenceDecoded, type CodeDeclarations, type CompactVar, type ComplexDecoded, type ComplexShape, type ComposedVar, type Decoded, type DecodedCall, type EnumDecoded, type EnumShape, type EnumVar, type GetViewBuilder, type LookupEntry, type MetadataPrimitives$1 as MetadataPrimitives, type NumberDecoded, type OptionDecoded, type OptionShape, type OptionVar, type PrimitiveDecoded, type PrimitiveVar, type ResultDecoded, type ResultShape, type ResultVar, type SequenceDecoded, type SequenceShape, type SequenceVar, type Shape, type StringDecoded, type StructDecoded, type StructShape, type StructVar, type TerminalVar, type TupleDecoded, type TupleShape, type TupleVar, type UnshapedDecoder, type Var, type Variable, type VoidDecoded, type VoidVar, getChecksumBuilder, getDynamicBuilder, getLookupFn, getStaticBuilder, getViewBuilder, primitiveTypes }; |
@@ -75,9 +75,15 @@ "use strict"; | ||
}; | ||
let isAccountId32SearchOn = true; | ||
const getLookupEntryDef = withCache2((id) => { | ||
const { def } = lookupData[id]; | ||
const { def, path, params } = lookupData[id]; | ||
if (def.tag === "composite") { | ||
if (def.value.length === 0) | ||
return voidVar; | ||
if (def.value.length === 1) | ||
if (def.value.length === 1) { | ||
if (isAccountId32SearchOn && path.join(",") === "sp_core,crypto,AccountId32") { | ||
isAccountId32SearchOn = false; | ||
return { type: "AccountId32" }; | ||
} | ||
return getLookupEntryDef(def.value[0].type); | ||
} | ||
let allKey = true; | ||
@@ -103,2 +109,17 @@ const values = {}; | ||
if (def.tag === "variant") { | ||
if (path.length === 1 && path[0] === "Option" && params.length === 1 && params[0].name === "T") { | ||
return { | ||
type: "option", | ||
value: getLookupEntryDef(params[0].type) | ||
}; | ||
} | ||
if (path.length === 1 && path[0] === "Result" && params.length === 2 && params[0].name === "T" && params[1].name === "E") { | ||
return { | ||
type: "result", | ||
value: { | ||
ok: getLookupEntryDef(params[0].type), | ||
ko: getLookupEntryDef(params[1].type) | ||
} | ||
}; | ||
} | ||
if (def.value.length === 0) | ||
@@ -239,3 +260,2 @@ return voidVar; | ||
var toCamelCase = (...parts) => parts[0] + parts.slice(1).map((part) => part[0].toUpperCase() + part.slice(1)).join(""); | ||
var isBytes = (input) => input.type === "primitive" && input.value === "u8"; | ||
var getTypes = (varName) => primitiveTypes[varName] ?? varName; | ||
@@ -247,2 +267,14 @@ var _buildSyntax = (input, cache, stack, declarations, getVarName) => { | ||
} | ||
if (input.type === "AccountId32") { | ||
declarations.imports.add("AccountId"); | ||
const id = "_accountId"; | ||
declarations.variables.set(id, { | ||
id, | ||
value: `AccountId()`, | ||
types: "SS58String", | ||
directDependencies: /* @__PURE__ */ new Set() | ||
}); | ||
declarations.typeImports.add("SS58String"); | ||
return id; | ||
} | ||
if (input.type === "compact") { | ||
@@ -316,15 +348,3 @@ const importVal = input.isBig ? "compactBn" : "compactNumber"; | ||
if (input.type === "array") { | ||
if (isBytes(input.value)) { | ||
if (input.len === 32 && (input.id === 0 || input.id === 1)) { | ||
declarations.imports.add("AccountId"); | ||
const id = "_accountId"; | ||
declarations.variables.set(id, { | ||
id, | ||
value: `AccountId()`, | ||
types: "SS58String", | ||
directDependencies: /* @__PURE__ */ new Set() | ||
}); | ||
declarations.typeImports.add("SS58String"); | ||
return id; | ||
} | ||
if (input.value.type === "primitive" && input.value.value === "u8") { | ||
declarations.imports.add("Bin"); | ||
@@ -349,2 +369,30 @@ declarations.variables.set(varId, { | ||
return buildStruct(varId, input.value); | ||
if (input.type === "option") { | ||
declarations.imports.add("Option"); | ||
const inner = buildNextSyntax(input.value); | ||
const id = `_Option_${inner}`; | ||
const variable = { | ||
id, | ||
value: `Option(${inner})`, | ||
types: `${getTypes(inner)} | undefined`, | ||
directDependencies: /* @__PURE__ */ new Set([inner]) | ||
}; | ||
declarations.variables.set(id, variable); | ||
return id; | ||
} | ||
if (input.type === "result") { | ||
declarations.imports.add("Result"); | ||
declarations.typeImports.add("ResultPayload"); | ||
const ok = buildNextSyntax(input.value.ok); | ||
const ko = buildNextSyntax(input.value.ko); | ||
const id = `_Result_${ok}_${ko}`; | ||
const variable = { | ||
id, | ||
value: `Result(${ok}, ${ko})`, | ||
types: `ResultPayload<${getTypes(ok)}, ${getTypes(ko)}>`, | ||
directDependencies: /* @__PURE__ */ new Set([ok, ko]) | ||
}; | ||
declarations.variables.set(id, variable); | ||
return id; | ||
} | ||
declarations.imports.add("Variant"); | ||
@@ -480,2 +528,11 @@ declarations.typeImports.add("Enum"); | ||
}; | ||
const buildRuntimeCall = (api, method) => { | ||
const entry = metadata.apis.find((x) => x.name === api)?.methods.find((x) => x.name === method); | ||
if (!entry) | ||
throw null; | ||
return { | ||
args: buildNamedTuple(entry.inputs, `${api}${method}Args`), | ||
value: buildDefinition(entry.output) | ||
}; | ||
}; | ||
const buildVariant = (type) => (pallet, name) => { | ||
@@ -530,2 +587,3 @@ const lookupEntry = getLookupEntryDef( | ||
buildCall: buildVariant("calls"), | ||
buildRuntimeCall, | ||
buildConstant, | ||
@@ -542,6 +600,7 @@ getTypeFromVarName, | ||
var _bytes = scale.Bin(); | ||
var isBytes2 = (input) => input.type === "primitive" && input.value === "u8"; | ||
var _buildCodec = (input, cache, stack, _accountId) => { | ||
if (input.type === "primitive") | ||
return scale[input.value]; | ||
if (input.type === "AccountId32") | ||
return _accountId; | ||
if (input.type === "compact") | ||
@@ -567,5 +626,4 @@ return scale.compact; | ||
if (input.type === "array") { | ||
if (isBytes2(input.value)) { | ||
return input.len === 32 && (input.id === 0 || input.id === 1) ? _accountId : scale.Bin(input.len); | ||
} | ||
if (input.value.type === "primitive" && input.value.value === "u8") | ||
return scale.Bin(input.len); | ||
return buildVector(input.value, input.len); | ||
@@ -579,2 +637,9 @@ } | ||
return buildStruct(input.value); | ||
if (input.type === "option") | ||
return scale.Option(buildNextCodec(input.value)); | ||
if (input.type === "result") | ||
return scale.Result( | ||
buildNextCodec(input.value.ok), | ||
buildNextCodec(input.value.ko) | ||
); | ||
const dependencies = Object.values(input.value).map((v) => { | ||
@@ -681,2 +746,11 @@ if (v.type === "primitive") | ||
}; | ||
const buildRuntimeCall = (api, method) => { | ||
const entry = metadata.apis.find((x) => x.name === api)?.methods.find((x) => x.name === method); | ||
if (!entry) | ||
throw null; | ||
return { | ||
args: scale.Tuple(...entry.inputs.map((x) => buildDefinition(x.type))), | ||
value: buildDefinition(entry.output) | ||
}; | ||
}; | ||
return { | ||
@@ -687,2 +761,3 @@ buildDefinition, | ||
buildError: buildVariant("errors"), | ||
buildRuntimeCall, | ||
buildCall, | ||
@@ -766,2 +841,12 @@ buildConstant, | ||
return buildStruct(input.value); | ||
if (input.type === "option") | ||
return getChecksum([buildNextChecksum(input.value)], "Option()"); | ||
if (input.type === "result") | ||
return getChecksum( | ||
[input.value.ok, input.value.ko].map(buildNextChecksum), | ||
"Result()" | ||
); | ||
if (input.type === "AccountId32") { | ||
return getChecksum([primitiveChecksums.u8, 32n], "AccountId32"); | ||
} | ||
const dependencies = Object.values(input.value).map((v) => { | ||
@@ -799,2 +884,16 @@ if (v.type === "primitive") | ||
}; | ||
const buildRuntimeCall = (api, method) => { | ||
try { | ||
const entry = metadata.apis.find((x) => x.name === api)?.methods.find((x) => x.name === method); | ||
if (!entry) | ||
throw null; | ||
const args = getChecksum( | ||
entry.inputs.map((x) => buildDefinition(x.type)), | ||
`(${entry.inputs.map((x) => x.name).join(",")})` | ||
); | ||
return getChecksum([args, buildDefinition(entry.output)]); | ||
} catch (_) { | ||
return null; | ||
} | ||
}; | ||
const buildEnumEntry = (entry) => { | ||
@@ -830,2 +929,3 @@ if (entry.type === "primitive") | ||
buildDefinition: toStringEnhancer(buildDefinition), | ||
buildRuntimeCall: toStringEnhancer(buildRuntimeCall), | ||
buildStorage: toStringEnhancer(buildStorage), | ||
@@ -927,2 +1027,10 @@ buildCall: toStringEnhancer(buildVariant("calls")), | ||
); | ||
var OptionDec = (input) => complexShapedDecoder( | ||
{ codec: "Option", shape: input.shape }, | ||
scale2.Option.dec(input) | ||
); | ||
var ResultDec = (ok, ko) => complexShapedDecoder( | ||
{ codec: "Result", shape: { ok: ok.shape, ko: ko.shape } }, | ||
scale2.Result.dec(ok, ko) | ||
); | ||
var selfDecoder = (value) => { | ||
@@ -944,3 +1052,5 @@ let cache = (x) => { | ||
Struct: StructDec, | ||
Enum: EnumDec | ||
Enum: EnumDec, | ||
Option: OptionDec, | ||
Result: ResultDec | ||
}; | ||
@@ -973,2 +1083,4 @@ | ||
return primitives[input.value]; | ||
if (input.type === "AccountId32") | ||
return _accountId; | ||
if (input.type === "compact") | ||
@@ -994,3 +1106,3 @@ return input.isBig ? primitives.compactBn : primitives.compactNumber; | ||
if (input.value.type === "primitive" && input.value.value === "u8") { | ||
return input.len === 32 && (input.id === 0 || input.id === 1) ? _accountId : primitives.BytesArray(input.len); | ||
return primitives.BytesArray(input.len); | ||
} | ||
@@ -1005,2 +1117,6 @@ return buildVector(input.value, input.len); | ||
return buildStruct(input.value, input.innerDocs); | ||
if (input.type === "option") | ||
return complex.Option(buildNext(input.value)); | ||
if (input.type === "result") | ||
return complex.Result(buildNext(input.value.ok), buildNext(input.value.ko)); | ||
const dependencies = Object.values(input.value).map((v) => { | ||
@@ -1007,0 +1123,0 @@ if (v.type === "primitive") |
import * as scale from '@polkadot-api/substrate-bindings'; | ||
import { StringRecord, V14, Codec, Decoder, HexString } from '@polkadot-api/substrate-bindings'; | ||
export { Decoder, HexString, StringRecord, V14 } from '@polkadot-api/substrate-bindings'; | ||
import { StringRecord, V15, Codec, Decoder, HexString } from '@polkadot-api/substrate-bindings'; | ||
export { Decoder, HexString, StringRecord, V15 } from '@polkadot-api/substrate-bindings'; | ||
@@ -21,3 +21,6 @@ type VoidVar = { | ||
}; | ||
type TerminalVar = PrimitiveVar | CompactVar | BitSequenceVar; | ||
type AccountId32 = { | ||
type: "AccountId32"; | ||
}; | ||
type TerminalVar = PrimitiveVar | CompactVar | BitSequenceVar | AccountId32; | ||
type TupleVar = { | ||
@@ -40,2 +43,13 @@ type: "tuple"; | ||
}; | ||
type OptionVar = { | ||
type: "option"; | ||
value: LookupEntry; | ||
}; | ||
type ResultVar = { | ||
type: "result"; | ||
value: { | ||
ok: LookupEntry; | ||
ko: LookupEntry; | ||
}; | ||
}; | ||
type SequenceVar = { | ||
@@ -50,3 +64,3 @@ type: "sequence"; | ||
}; | ||
type ComposedVar = TupleVar | StructVar | SequenceVar | ArrayVar | EnumVar; | ||
type ComposedVar = TupleVar | StructVar | SequenceVar | ArrayVar | OptionVar | ResultVar | EnumVar; | ||
type Var = TerminalVar | ComposedVar; | ||
@@ -174,3 +188,3 @@ type LookupEntry = { | ||
} | ||
declare const getStaticBuilder: (metadata: V14, namespace: string) => { | ||
declare const getStaticBuilder: (metadata: V15, namespace: string) => { | ||
buildDefinition: (id: number) => string; | ||
@@ -184,2 +198,6 @@ buildStorage: (pallet: string, entry: string) => { | ||
buildCall: (pallet: string, name: string) => string; | ||
buildRuntimeCall: (api: string, method: string) => { | ||
args: string; | ||
value: string; | ||
}; | ||
buildConstant: (pallet: string, constantName: string) => string; | ||
@@ -191,3 +209,3 @@ getTypeFromVarName: (varName: string) => string; | ||
declare const getDynamicBuilder: (metadata: V14) => { | ||
declare const getDynamicBuilder: (metadata: V15) => { | ||
buildDefinition: (id: number) => Codec<any>; | ||
@@ -215,2 +233,6 @@ buildStorage: (pallet: string, entry: string) => { | ||
}; | ||
buildRuntimeCall: (api: string, method: string) => { | ||
args: Codec<any[]>; | ||
value: Codec<any>; | ||
}; | ||
buildCall: (pallet: string, name: string) => { | ||
@@ -227,4 +249,5 @@ args: Codec<any>; | ||
declare const getChecksumBuilder: (metadata: V14) => { | ||
declare const getChecksumBuilder: (metadata: V15) => { | ||
buildDefinition: (id: number) => string | null; | ||
buildRuntimeCall: (api: string, method: string) => string | null; | ||
buildStorage: (pallet: string, entry: string) => string | null; | ||
@@ -245,3 +268,3 @@ buildCall: (pallet: string, name: string) => string | null; | ||
}; | ||
type GetViewBuilder = (metadata: V14) => { | ||
type GetViewBuilder = (metadata: V15) => { | ||
buildDefinition: (idx: number) => { | ||
@@ -334,2 +357,13 @@ shape: Shape; | ||
}>; | ||
type OptionDecoded = WithInputAndPath<{ | ||
codec: "Option"; | ||
value: Decoded; | ||
}>; | ||
type ResultDecoded = WithInputAndPath<{ | ||
codec: "Result"; | ||
value: { | ||
ok: Decoded; | ||
ko: Decoded; | ||
}; | ||
}>; | ||
type TupleDecoded = WithInputAndPath<{ | ||
@@ -353,3 +387,3 @@ codec: "Tuple"; | ||
}>; | ||
type ComplexDecoded = SequenceDecoded | ArrayDecoded | TupleDecoded | StructDecoded | EnumDecoded; | ||
type ComplexDecoded = SequenceDecoded | ArrayDecoded | TupleDecoded | StructDecoded | OptionDecoded | ResultDecoded | EnumDecoded; | ||
type Decoded = PrimitiveDecoded | ComplexDecoded; | ||
@@ -373,2 +407,13 @@ interface SequenceShape { | ||
} | ||
interface OptionShape { | ||
codec: "Option"; | ||
shape: Shape; | ||
} | ||
interface ResultShape { | ||
codec: "Result"; | ||
shape: { | ||
ok: Shape; | ||
ko: Shape; | ||
}; | ||
} | ||
interface EnumShape { | ||
@@ -378,3 +423,3 @@ codec: "Enum"; | ||
} | ||
type ComplexShape = SequenceShape | ArrayShape | TupleShape | StructShape | EnumShape; | ||
type ComplexShape = SequenceShape | ArrayShape | TupleShape | StructShape | OptionShape | ResultShape | EnumShape; | ||
type Shape = { | ||
@@ -386,2 +431,2 @@ codec: PrimitiveDecoded["codec"]; | ||
export { type AccountIdDecoded, type ArrayDecoded, type ArrayShape, type ArrayVar, type BigNumberDecoded, type BitSequenceDecoded, type BitSequenceVar, type BoolDecoded, type BytesArrayDecoded, type BytesSequenceDecoded, type CodeDeclarations, type CompactVar, type ComplexDecoded, type ComplexShape, type ComposedVar, type Decoded, type DecodedCall, type EnumDecoded, type EnumShape, type EnumVar, type GetViewBuilder, type LookupEntry, type MetadataPrimitives$1 as MetadataPrimitives, type NumberDecoded, type PrimitiveDecoded, type PrimitiveVar, type SequenceDecoded, type SequenceShape, type SequenceVar, type Shape, type StringDecoded, type StructDecoded, type StructShape, type StructVar, type TerminalVar, type TupleDecoded, type TupleShape, type TupleVar, type UnshapedDecoder, type Var, type Variable, type VoidDecoded, type VoidVar, getChecksumBuilder, getDynamicBuilder, getLookupFn, getStaticBuilder, getViewBuilder, primitiveTypes }; | ||
export { type AccountId32, type AccountIdDecoded, type ArrayDecoded, type ArrayShape, type ArrayVar, type BigNumberDecoded, type BitSequenceDecoded, type BitSequenceVar, type BoolDecoded, type BytesArrayDecoded, type BytesSequenceDecoded, type CodeDeclarations, type CompactVar, type ComplexDecoded, type ComplexShape, type ComposedVar, type Decoded, type DecodedCall, type EnumDecoded, type EnumShape, type EnumVar, type GetViewBuilder, type LookupEntry, type MetadataPrimitives$1 as MetadataPrimitives, type NumberDecoded, type OptionDecoded, type OptionShape, type OptionVar, type PrimitiveDecoded, type PrimitiveVar, type ResultDecoded, type ResultShape, type ResultVar, type SequenceDecoded, type SequenceShape, type SequenceVar, type Shape, type StringDecoded, type StructDecoded, type StructShape, type StructVar, type TerminalVar, type TupleDecoded, type TupleShape, type TupleVar, type UnshapedDecoder, type Var, type Variable, type VoidDecoded, type VoidVar, getChecksumBuilder, getDynamicBuilder, getLookupFn, getStaticBuilder, getViewBuilder, primitiveTypes }; |
@@ -1,9 +0,9 @@ | ||
"use strict";var ce=Object.create;var $=Object.defineProperty;var ue=Object.getOwnPropertyDescriptor;var pe=Object.getOwnPropertyNames;var de=Object.getPrototypeOf,le=Object.prototype.hasOwnProperty;var me=(e,o)=>{for(var i in o)$(e,i,{get:o[i],enumerable:!0})},Y=(e,o,i,r)=>{if(o&&typeof o=="object"||typeof o=="function")for(let s of pe(o))!le.call(e,s)&&s!==i&&$(e,s,{get:()=>o[s],enumerable:!(r=ue(o,s))||r.enumerable});return e};var z=(e,o,i)=>(i=e!=null?ce(de(e)):{},Y(o||!e||!e.__esModule?$(i,"default",{value:e,enumerable:!0}):i,e)),ye=e=>Y($({},"__esModule",{value:!0}),e);var Ie={};me(Ie,{getChecksumBuilder:()=>Ve,getDynamicBuilder:()=>De,getLookupFn:()=>L,getStaticBuilder:()=>be,getViewBuilder:()=>se,primitiveTypes:()=>U});module.exports=ye(Ie);var W={type:"primitive",value:"_void"},L=e=>{let o=new Map,i=new Set,s=(d=>c=>{let m=o.get(c);if(m)return m;if(i.has(c)){let p={id:c};return o.set(c,p),p}i.add(c);let h=d(c);return m=o.get(c),m?Object.assign(m,h):(m={id:c,...h},o.set(c,m)),i.delete(c),m})(d=>{let{def:c}=e[d];if(c.tag==="composite"){if(c.value.length===0)return W;if(c.value.length===1)return s(c.value[0].type);let h=!0,p={},y={};return c.value.forEach((b,a)=>{h=h&&!!b.name;let v=b.name||a;p[v]=s(b.type),y[v]=b.docs}),h?{type:"struct",value:p,innerDocs:y}:{type:"tuple",value:Object.values(p),innerDocs:Object.values(y)}}if(c.tag==="variant"){if(c.value.length===0)return W;let h={},p={};return c.value.forEach(y=>{let b=y.name;if(p[b]=y.docs,y.fields.length===0){h[b]={...W,idx:y.index};return}let a=!0,v={},t={};y.fields.forEach((n,l)=>{a=a&&!!n.name;let u=n.name||l;v[u]=s(n.type),t[u]=n.docs}),h[b]=a?{type:"struct",value:v,innerDocs:t,idx:y.index}:{type:"tuple",value:Object.values(v),innerDocs:Object.values(t),idx:y.index}}),{type:"enum",value:h,innerDocs:p}}if(c.tag==="sequence")return{type:"sequence",value:s(c.value)};if(c.tag==="array")return{type:"array",value:s(c.value.type),len:c.value.len};if(c.tag==="tuple"){if(c.value.length===0)return W;if(c.value.length===1)return s(c.value[0]);let h=c.value.map(y=>s(y)),p=c.value.map(y=>e[y].docs);return{type:"tuple",value:h,innerDocs:p}}if(c.tag==="primitive")return{type:"primitive",value:c.value.tag};if(c.tag==="compact"){let h=s(c.value);return{type:"compact",isBig:Number(h.value.slice(1))>32}}return c.tag==="bitSequence"?{type:"bitSequence"}:{type:"primitive",value:c.value}});return s};var w=(e,o,i)=>(r,s,d,...c)=>{let{id:m}=r;if(s.has(m))return s.get(m);if(d.has(m)){let p=o(()=>s.get(m),r,...c);return s.set(m,p),p}d.add(m);let h=e(r,s,d,...c);return d.delete(m),s.has(m)&&(h=i(h,s.get(m),r,...c)),s.set(m,h),h};var U={_void:"undefined",bool:"boolean",char:"string",str:"string",u8:"number",u16:"number",u32:"number",u64:"bigint",u128:"bigint",u256:"bigint",i8:"number",i16:"number",i32:"number",i64:"bigint",i128:"bigint",i256:"bigint",compactNumber:"number",compactBn:"bigint",bitSequence:"{bitsLen: number, bytes: Uint8Array}",historicMetaCompat:"any"},H=(...e)=>e[0]+e.slice(1).map(o=>o[0].toUpperCase()+o.slice(1)).join(""),ve=e=>e.type==="primitive"&&e.value==="u8",j=e=>U[e]??e,he=(e,o,i,r,s)=>{if(e.type==="primitive")return r.imports.add(e.value),e.value;if(e.type==="compact"){let t=e.isBig?"compactBn":"compactNumber";return r.imports.add(t),t}if(e.type==="bitSequence")return r.imports.add(e.type),e.type;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8"){r.imports.add("Bin"),r.typeImports.add("HexString"),r.typeImports.add("Binary");let t={id:"_bytesSeq",value:"Bin()",types:"Binary",directDependencies:new Set};return r.variables.has(t.id)||r.variables.set(t.id,t),t.id}if(r.variables.has(s(e.id,"circular")))return s(e.id,"circular");if(r.variables.has(s(e.id)))return s(e.id);let d=t=>Q(t,o,i,r,s),c=(t,n,l)=>{r.imports.add("Vector");let u=d(n),g={id:t,value:`Vector(${(l?[u,l]:[u]).join(", ")})`,types:`Array<${j(u)}>`,directDependencies:new Set([u])};return r.variables.set(t,g),t},m=(t,n)=>{r.imports.add("Tuple");let l=n.map(d),u={id:t,value:`Tuple(${l.join(", ")})`,types:`[${l.map(j).join(", ")}]`,directDependencies:new Set(l)};return r.variables.set(t,u),t},h=(t,n)=>{r.imports.add("Struct");let l=Object.values(n).map(d),u={id:t,value:`Struct({${Object.keys(n).map((S,g)=>`${S}: ${l[g]}`).join(", ")}})`,types:`{${Object.keys(n).map((S,g)=>`${S}: ${j(l[g])}`).join(", ")}}`,directDependencies:new Set(l)};return r.variables.set(t,u),t},p=s(e.id);if(e.type==="array"){if(ve(e.value)){if(e.len===32&&(e.id===0||e.id===1)){r.imports.add("AccountId");let t="_accountId";return r.variables.set(t,{id:t,value:"AccountId()",types:"SS58String",directDependencies:new Set}),r.typeImports.add("SS58String"),t}return r.imports.add("Bin"),r.variables.set(p,{id:p,value:`Bin(${e.len})`,types:"Binary",directDependencies:new Set}),r.typeImports.add("HexString"),r.typeImports.add("Binary"),p}return c(p,e.value,e.len)}if(e.type==="sequence")return c(p,e.value);if(e.type==="tuple")return m(p,e.value);if(e.type==="struct")return h(p,e.value);r.imports.add("Variant"),r.typeImports.add("Enum");let y=Object.entries(e.value).map(([t,n])=>{if(n.type==="primitive")return r.imports.add(n.value),n.value;let l=H(p,t);if(n.type==="tuple"){if(n.value.length===1){let u=d(n.value[0]);return r.variables.has(l)||r.variables.set(l,{id:l,value:u,types:j(u),directDependencies:new Set([u])}),l}return m(l,n.value)}else h(l,n.value);return l}),b=Object.values(e.value).map(t=>t.idx),a=b.every((t,n)=>t===n),v=`{${Object.keys(e.value).map((t,n)=>`${t}: ${y[n]}`)}}${a?"":`, [${b.join(", ")}]`}`;return r.enums.set(p,Object.keys(e.value).map((t,n)=>`{type: '${t}', value: ${j(y[n])}}`).join(" | ")),r.variables.set(p,{id:p,value:`Variant(${v})`,types:`Enum<E${p}>`,directDependencies:new Set(y)}),p},Q=w(he,(e,o,i,r)=>{i.imports.add("Self");let s=r(o.id),d={id:r(o.id,"circular"),types:s,value:`Self(() => ${s})`,directDependencies:new Set([s])};return i.variables.set(d.id,d),d.id},e=>e),be=(e,o)=>{let i={imports:new Set,typeImports:new Set(["Codec"]),variables:new Map,enums:new Map},r=e.lookup,s=L(r),d=(u,...S)=>{let{path:g}=r[u],D=g.length===0?["cdc"+u]:g[0]==="sp_runtime"?[o,g.slice(-1)[0]]:[o,...g];return D.push(...S),H(...D)},c=new Map,m=u=>Q(s(u),c,new Set,i,d),h=(u,S)=>{if(i.variables.has(S))return S;let g=u.map(x=>x.type).map(m),D=u.map(x=>x.name);i.imports.add("Tuple");let k={id:S,types:`[${D.map((x,A)=>`${x[0].toUpperCase()+x.slice(1)}: ${j(g[A])}`).join(", ")}]`,value:`Tuple(${g.join(", ")})`,directDependencies:new Set(g)};return i.variables.set(S,k),S},p="_emptyTuple",y=()=>(i.variables.has(p)||(i.imports.add("Tuple"),i.variables.set(p,{id:p,types:"[]",value:"Tuple()",directDependencies:new Set})),p),b=(u,S)=>{let g=e.pallets.find(R=>R.name===u).storage.items.find(R=>R.name===S);if(g.type.tag==="plain")return{key:y(),val:m(g.type.value)};let{key:D,value:k}=g.type.value,x=m(k);return{key:g.type.value.hashers.length===1?h([{name:"key",type:D}],d(D,"Tupled")):m(D),val:x}},a=u=>(S,g)=>{let D=s(e.pallets.find(x=>x.name===S)[u]);if(D.type!=="enum")throw null;let k=H(m(D.id),g);return!i.variables.has(k)&&D.value[g].type==="primitive"&&i.variables.set(k,{id:k,value:"_void",types:"undefined",directDependencies:new Set}),k},v=(u,S)=>{let g=e.pallets.find(D=>D.name===u).constants.find(D=>D.name===S);return m(g.type)},t=()=>{let u=`import type {${[...i.typeImports].join(", ")}} from "@polkadot-api/client"; | ||
`,S=`import {${[...i.imports].join(", ")}} from "@polkadot-api/substrate-bindings"; | ||
"use strict";var ue=Object.create;var _=Object.defineProperty;var pe=Object.getOwnPropertyDescriptor;var de=Object.getOwnPropertyNames;var le=Object.getPrototypeOf,me=Object.prototype.hasOwnProperty;var ye=(e,o)=>{for(var i in o)_(e,i,{get:o[i],enumerable:!0})},z=(e,o,i,r)=>{if(o&&typeof o=="object"||typeof o=="function")for(let u of de(o))!me.call(e,u)&&u!==i&&_(e,u,{get:()=>o[u],enumerable:!(r=pe(o,u))||r.enumerable});return e};var Q=(e,o,i)=>(i=e!=null?ue(le(e)):{},z(o||!e||!e.__esModule?_(i,"default",{value:e,enumerable:!0}):i,e)),ve=e=>z(_({},"__esModule",{value:!0}),e);var We={};ye(We,{getChecksumBuilder:()=>ke,getDynamicBuilder:()=>fe,getLookupFn:()=>P,getStaticBuilder:()=>be,getViewBuilder:()=>ce,primitiveTypes:()=>N});module.exports=ve(We);var q={type:"primitive",value:"_void"},P=e=>{let o=new Map,i=new Set,r=b=>a=>{let h=o.get(a);if(h)return h;if(i.has(a)){let D={id:a};return o.set(a,D),D}i.add(a);let m=b(a);return h=o.get(a),h?Object.assign(h,m):(h={id:a,...m},o.set(a,h)),i.delete(a),h},u=!0,c=r(b=>{let{def:a,path:h,params:m}=e[b];if(a.tag==="composite"){if(a.value.length===0)return q;if(a.value.length===1)return u&&h.join(",")==="sp_core,crypto,AccountId32"?(u=!1,{type:"AccountId32"}):c(a.value[0].type);let v=!0,s={},d={};return a.value.forEach((n,t)=>{v=v&&!!n.name;let p=n.name||t;s[p]=c(n.type),d[p]=n.docs}),v?{type:"struct",value:s,innerDocs:d}:{type:"tuple",value:Object.values(s),innerDocs:Object.values(d)}}if(a.tag==="variant"){if(h.length===1&&h[0]==="Option"&&m.length===1&&m[0].name==="T")return{type:"option",value:c(m[0].type)};if(h.length===1&&h[0]==="Result"&&m.length===2&&m[0].name==="T"&&m[1].name==="E")return{type:"result",value:{ok:c(m[0].type),ko:c(m[1].type)}};if(a.value.length===0)return q;let v={},s={};return a.value.forEach(d=>{let n=d.name;if(s[n]=d.docs,d.fields.length===0){v[n]={...q,idx:d.index};return}let t=!0,p={},y={};d.fields.forEach((l,g)=>{t=t&&!!l.name;let f=l.name||g;p[f]=c(l.type),y[f]=l.docs}),v[n]=t?{type:"struct",value:p,innerDocs:y,idx:d.index}:{type:"tuple",value:Object.values(p),innerDocs:Object.values(y),idx:d.index}}),{type:"enum",value:v,innerDocs:s}}if(a.tag==="sequence")return{type:"sequence",value:c(a.value)};if(a.tag==="array")return{type:"array",value:c(a.value.type),len:a.value.len};if(a.tag==="tuple"){if(a.value.length===0)return q;if(a.value.length===1)return c(a.value[0]);let v=a.value.map(d=>c(d)),s=a.value.map(d=>e[d].docs);return{type:"tuple",value:v,innerDocs:s}}if(a.tag==="primitive")return{type:"primitive",value:a.value.tag};if(a.tag==="compact"){let v=c(a.value);return{type:"compact",isBig:Number(v.value.slice(1))>32}}return a.tag==="bitSequence"?{type:"bitSequence"}:{type:"primitive",value:a.value}});return c};var L=(e,o,i)=>(r,u,c,...b)=>{let{id:a}=r;if(u.has(a))return u.get(a);if(c.has(a)){let m=o(()=>u.get(a),r,...b);return u.set(a,m),m}c.add(a);let h=e(r,u,c,...b);return c.delete(a),u.has(a)&&(h=i(h,u.get(a),r,...b)),u.set(a,h),h};var N={_void:"undefined",bool:"boolean",char:"string",str:"string",u8:"number",u16:"number",u32:"number",u64:"bigint",u128:"bigint",u256:"bigint",i8:"number",i16:"number",i32:"number",i64:"bigint",i128:"bigint",i256:"bigint",compactNumber:"number",compactBn:"bigint",bitSequence:"{bitsLen: number, bytes: Uint8Array}",historicMetaCompat:"any"},F=(...e)=>e[0]+e.slice(1).map(o=>o[0].toUpperCase()+o.slice(1)).join(""),A=e=>N[e]??e,he=(e,o,i,r,u)=>{if(e.type==="primitive")return r.imports.add(e.value),e.value;if(e.type==="AccountId32"){r.imports.add("AccountId");let n="_accountId";return r.variables.set(n,{id:n,value:"AccountId()",types:"SS58String",directDependencies:new Set}),r.typeImports.add("SS58String"),n}if(e.type==="compact"){let n=e.isBig?"compactBn":"compactNumber";return r.imports.add(n),n}if(e.type==="bitSequence")return r.imports.add(e.type),e.type;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8"){r.imports.add("Bin"),r.typeImports.add("HexString"),r.typeImports.add("Binary");let n={id:"_bytesSeq",value:"Bin()",types:"Binary",directDependencies:new Set};return r.variables.has(n.id)||r.variables.set(n.id,n),n.id}if(r.variables.has(u(e.id,"circular")))return u(e.id,"circular");if(r.variables.has(u(e.id)))return u(e.id);let c=n=>X(n,o,i,r,u),b=(n,t,p)=>{r.imports.add("Vector");let y=c(t),g={id:n,value:`Vector(${(p?[y,p]:[y]).join(", ")})`,types:`Array<${A(y)}>`,directDependencies:new Set([y])};return r.variables.set(n,g),n},a=(n,t)=>{r.imports.add("Tuple");let p=t.map(c),y={id:n,value:`Tuple(${p.join(", ")})`,types:`[${p.map(A).join(", ")}]`,directDependencies:new Set(p)};return r.variables.set(n,y),n},h=(n,t)=>{r.imports.add("Struct");let p=Object.values(t).map(c),y={id:n,value:`Struct({${Object.keys(t).map((l,g)=>`${l}: ${p[g]}`).join(", ")}})`,types:`{${Object.keys(t).map((l,g)=>`${l}: ${A(p[g])}`).join(", ")}}`,directDependencies:new Set(p)};return r.variables.set(n,y),n},m=u(e.id);if(e.type==="array")return e.value.type==="primitive"&&e.value.value==="u8"?(r.imports.add("Bin"),r.variables.set(m,{id:m,value:`Bin(${e.len})`,types:"Binary",directDependencies:new Set}),r.typeImports.add("HexString"),r.typeImports.add("Binary"),m):b(m,e.value,e.len);if(e.type==="sequence")return b(m,e.value);if(e.type==="tuple")return a(m,e.value);if(e.type==="struct")return h(m,e.value);if(e.type==="option"){r.imports.add("Option");let n=c(e.value),t=`_Option_${n}`,p={id:t,value:`Option(${n})`,types:`${A(n)} | undefined`,directDependencies:new Set([n])};return r.variables.set(t,p),t}if(e.type==="result"){r.imports.add("Result"),r.typeImports.add("ResultPayload");let n=c(e.value.ok),t=c(e.value.ko),p=`_Result_${n}_${t}`,y={id:p,value:`Result(${n}, ${t})`,types:`ResultPayload<${A(n)}, ${A(t)}>`,directDependencies:new Set([n,t])};return r.variables.set(p,y),p}r.imports.add("Variant"),r.typeImports.add("Enum");let D=Object.entries(e.value).map(([n,t])=>{if(t.type==="primitive")return r.imports.add(t.value),t.value;let p=F(m,n);if(t.type==="tuple"){if(t.value.length===1){let y=c(t.value[0]);return r.variables.has(p)||r.variables.set(p,{id:p,value:y,types:A(y),directDependencies:new Set([y])}),p}return a(p,t.value)}else h(p,t.value);return p}),v=Object.values(e.value).map(n=>n.idx),s=v.every((n,t)=>n===t),d=`{${Object.keys(e.value).map((n,t)=>`${n}: ${D[t]}`)}}${s?"":`, [${v.join(", ")}]`}`;return r.enums.set(m,Object.keys(e.value).map((n,t)=>`{type: '${n}', value: ${A(D[t])}}`).join(" | ")),r.variables.set(m,{id:m,value:`Variant(${d})`,types:`Enum<E${m}>`,directDependencies:new Set(D)}),m},X=L(he,(e,o,i,r)=>{i.imports.add("Self");let u=r(o.id),c={id:r(o.id,"circular"),types:u,value:`Self(() => ${u})`,directDependencies:new Set([u])};return i.variables.set(c.id,c),c.id},e=>e),be=(e,o)=>{let i={imports:new Set,typeImports:new Set(["Codec"]),variables:new Map,enums:new Map},r=e.lookup,u=P(r),c=(l,...g)=>{let{path:f}=r[l],E=f.length===0?["cdc"+l]:f[0]==="sp_runtime"?[o,f.slice(-1)[0]]:[o,...f];return E.push(...g),F(...E)},b=new Map,a=l=>X(u(l),b,new Set,i,c),h=(l,g)=>{if(i.variables.has(g))return g;let f=l.map(V=>V.type).map(a),E=l.map(V=>V.name);i.imports.add("Tuple");let T={id:g,types:`[${E.map((V,w)=>`${V[0].toUpperCase()+V.slice(1)}: ${A(f[w])}`).join(", ")}]`,value:`Tuple(${f.join(", ")})`,directDependencies:new Set(f)};return i.variables.set(g,T),g},m="_emptyTuple",D=()=>(i.variables.has(m)||(i.imports.add("Tuple"),i.variables.set(m,{id:m,types:"[]",value:"Tuple()",directDependencies:new Set})),m),v=(l,g)=>{let f=e.pallets.find(I=>I.name===l).storage.items.find(I=>I.name===g);if(f.type.tag==="plain")return{key:D(),val:a(f.type.value)};let{key:E,value:T}=f.type.value,V=a(T);return{key:f.type.value.hashers.length===1?h([{name:"key",type:E}],c(E,"Tupled")):a(E),val:V}},s=(l,g)=>{let f=e.apis.find(E=>E.name===l)?.methods.find(E=>E.name===g);if(!f)throw null;return{args:h(f.inputs,`${l}${g}Args`),value:a(f.output)}},d=l=>(g,f)=>{let E=u(e.pallets.find(V=>V.name===g)[l]);if(E.type!=="enum")throw null;let T=F(a(E.id),f);return!i.variables.has(T)&&E.value[f].type==="primitive"&&i.variables.set(T,{id:T,value:"_void",types:"undefined",directDependencies:new Set}),T},n=(l,g)=>{let f=e.pallets.find(E=>E.name===l).constants.find(E=>E.name===g);return a(f.type)},t=()=>{let l=`import type {${[...i.typeImports].join(", ")}} from "@polkadot-api/client"; | ||
`,g=`import {${[...i.imports].join(", ")}} from "@polkadot-api/substrate-bindings"; | ||
`,g=[...i.variables.values()].map(D=>`${i.enums.has(D.id)?`type E${D.id} = ${i.enums.get(D.id)}; | ||
export `:""}type ${D.id} = ${D.types}; | ||
const ${D.id}: Codec<${D.id}> = ${D.value};`).join(` | ||
`,f=[...i.variables.values()].map(E=>`${i.enums.has(E.id)?`type E${E.id} = ${i.enums.get(E.id)}; | ||
export `:""}type ${E.id} = ${E.types}; | ||
const ${E.id}: Codec<${E.id}> = ${E.value};`).join(` | ||
`);return`${u}${S}${g}`},n=()=>[...i.enums.keys()],l=u=>U[u]??i.variables.get(u)?.types??u;return{buildDefinition:m,buildStorage:b,buildEvent:a("events"),buildError:a("errors"),buildCall:a("calls"),buildConstant:v,getTypeFromVarName:l,getCode:t,getEnums:n}};var f=z(require("@polkadot-api/substrate-bindings"));var X=require("@polkadot-api/utils"),ge=f.Bin(),Se=e=>e.type==="primitive"&&e.value==="u8",fe=(e,o,i,r)=>{if(e.type==="primitive")return f[e.value];if(e.type==="compact")return f.compact;if(e.type==="bitSequence")return f.bitSequence;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8")return ge;let s=a=>Z(a,o,i,r),d=(a,v)=>{let t=s(a);return v?f.Vector(t,v):f.Vector(t)},c=a=>f.Tuple(...a.map(s)),m=a=>{let v=Object.fromEntries(Object.entries(a).map(([t,n])=>[t,s(n)]));return f.Struct(v)};if(e.type==="array")return Se(e.value)?e.len===32&&(e.id===0||e.id===1)?r:f.Bin(e.len):d(e.value,e.len);if(e.type==="sequence")return d(e.value);if(e.type==="tuple")return c(e.value);if(e.type==="struct")return m(e.value);let h=Object.values(e.value).map(a=>a.type==="primitive"?f._void:a.type==="tuple"&&a.value.length===1?s(a.value[0]):a.type==="tuple"?c(a.value):m(a.value)),p=Object.fromEntries(Object.keys(e.value).map((a,v)=>[a,h[v]])),y=Object.values(e.value).map(a=>a.idx);return y.every((a,v)=>a===v)?f.Variant(p):f.Variant(p,y)},Z=w(fe,f.Self,e=>e),De=e=>{let o=e.lookup,i=L(o),r=f.AccountId(),s=new Map,d=t=>Z(i(t),s,new Set,r),c=e.pallets.find(t=>t.name==="System")?.constants.find(t=>t.name==="SS58Prefix"),m;if(c)try{let t=d(c.type).dec(c.value);typeof t=="number"&&(m=t,r=f.AccountId(t))}catch{}let h=new Map,p=(t,n)=>{let l=h.get(t);l||h.set(t,l=f.Storage(t));let u=e.pallets.find(P=>P.name===t).storage.items.find(P=>P.name===n),S=(P,...M)=>{let J=l(...M);return{...J,len:P,fallback:u.modifier===1?J.dec(u.fallback):void 0}};if(u.type.tag==="plain")return S(0,n,d(u.type.value).dec);let{key:g,value:D,hashers:k}=u.type.value,x=d(D),A=k.map(P=>f[P.tag]),R=A.length===1?[[d(g),A[0]]]:i(g).value.map((P,M)=>[d(P.id),A[M]]);return S(A.length,n,x.dec,...R)},y=t=>t.type==="primitive"?f._void:t.type==="tuple"?f.Tuple(...Object.values(t.value).map(n=>d(n.id))):f.Struct((0,X.mapObject)(t.value,n=>d(n.id))),b=(t,n)=>{let l=e.pallets.find(u=>u.name===t).constants.find(u=>u.name===n);return d(l.type)},a=t=>(n,l)=>{let u=e.pallets.find(D=>D.name===n),S=i(u[t]);if(S.type!=="enum")throw null;let g=S.value[l];return{location:[u.index,g.idx],codec:y(S.value[l])}},v=(t,n)=>{let l=e.pallets.find(g=>g.name===t),u=i(l.calls);if(u.type!=="enum")throw null;let S=u.value[n];return{location:[l.index,S.idx],args:y(u.value[n])}};return{buildDefinition:d,buildStorage:p,buildEvent:a("events"),buildError:a("errors"),buildCall:v,buildConstant:b,ss58Prefix:m}};var N=require("@polkadot-api/substrate-bindings");var ee=new TextEncoder,Ee=ee.encode.bind(ee),V=(e,o)=>{let i=typeof o=="string",r=new Uint8Array((e.length+(i?1:0))*8),s=new DataView(r.buffer),d=0;i&&(s.setBigUint64(d,(0,N.h64)(Ee(o))),d+=8);for(let c=0;c<e.length;c++,d+=8)s.setBigUint64(d,e[c]);return(0,N.h64)(r)},F={_void:0n,bool:1n,char:2n,str:3n,u8:4n,u16:5n,u32:6n,u64:7n,u128:8n,u256:9n,i8:5n,i16:5n,i32:6n,i64:7n,i128:8n,i256:9n,compacts:10n,compactb:11n,bitSequence:12n,historicMetaCompat:13n},xe=14n,ke=(e,o,i)=>{if(o.has(e.id))return o.get(e.id);if(e.type==="primitive")return F[e.value];if(e.type==="compact")return F[e.isBig?"compactb":"compacts"];if(e.type==="bitSequence")return F.bitSequence;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8")return xe;let r=p=>te(p,o,i),s=(p,y)=>{let b=r(p);return y?V([b,BigInt(y)],"Vector(,)"):V([b],"Vector()")},d=p=>V(p.map(r)),c=p=>V(Object.values(p).map(r),JSON.stringify(Object.keys(p)));if(e.type==="array")return s(e.value,e.len);if(e.type==="sequence")return s(e.value);if(e.type==="tuple")return d(e.value);if(e.type==="struct")return c(e.value);let m=Object.values(e.value).map(p=>p.type==="primitive"?0n:p.type==="tuple"?d(p.value):c(p.value)),h=Object.keys(e.value);return h.push("Enum"),V(m,JSON.stringify({Enum:h}))},te=w(ke,()=>0n,e=>e),Ve=e=>{let o=e.lookup,i=L(o),r=new Map,s=y=>te(i(y),r,new Set),d=(y,b)=>{try{let a=e.pallets.find(u=>u.name===y).storage.items.find(u=>u.name===b);if(a.type.tag==="plain")return V([s(a.type.value)]);let{key:v,value:t}=a.type.value,n=s(t),l=a.type.value.hashers.length===1?V([s(v)]):s(v);return V([n,l])}catch{return null}},c=y=>{if(y.type==="primitive")return 0n;let b=Object.values(y.value).map(a=>s(a.id));return y.type==="tuple"?V(b):V(b,JSON.stringify(Object.keys(y.value)))},m=y=>(b,a)=>{try{let v=e.pallets.find(n=>n.name===b),t=i(v[y]);if(t.type!=="enum")throw null;return c(t.value[a])}catch{return null}},h=(y,b)=>{try{let a=e.pallets.find(v=>v.name===y).constants.find(v=>v.name===b);return s(a.type)}catch{return null}},p=y=>(...b)=>y(...b)?.toString(32)??null;return{buildDefinition:p(s),buildStorage:p(d),buildCall:p(m("calls")),buildEvent:p(m("events")),buildError:p(m("errors")),buildConstant:p(h)}};var _=require("@polkadot-api/utils"),O=require("@polkadot-api/substrate-bindings");var B=require("@polkadot-api/utils"),E=z(require("@polkadot-api/substrate-bindings")),Ce=B.toHex,re=(e,o)=>E.createDecoder(i=>{let r=i,s=r.i,d=e(r),c=Ce(new Uint8Array(r.buffer.slice(s,r.i)));return{...o,value:d,input:c}}),I=(e,o,i)=>{let r=re(o,{codec:e,...i});return Object.assign(r,{shape:{codec:e}})},q=(e,o,i)=>{let r=re(o,{codec:e.codec,...i});return Object.assign(r,{shape:e})},K=(e=42)=>{let o=E.enhanceDecoder(E.AccountId(e).dec,i=>({address:i,ss58Prefix:e}));return I("AccountId",o,{})},Te=e=>I("BytesArray",E.Hex.dec(e),{len:e}),Pe=["_void","bool","char","str","u8","u16","u32","i8","i16","i32","u64","u128","u256","i64","i128","i256","compactNumber","compactBn","bitSequence"],Le=Object.fromEntries(Pe.map(e=>[e,I(e,E[e].dec)])),C={...Le,Bytes:I("Bytes",E.Hex.dec()),BytesArray:Te,AccountId:K()},we=e=>q({codec:"Sequence",shape:e.shape},E.Vector.dec(e)),Ae=(e,o)=>q({codec:"Array",shape:e.shape,len:o},E.Vector.dec(e,o)),Oe=(...e)=>q({codec:"Tuple",shape:e.map(o=>o.shape)},E.Tuple.dec(...e)),je=e=>q({codec:"Struct",shape:(0,B.mapStringRecord)(e,o=>o.shape)},E.Struct.dec(e)),Re=(e,o)=>q({codec:"Enum",shape:(0,B.mapStringRecord)(e,i=>i.shape)},E.Variant.dec(e,o)),ne=e=>{let o=r=>{let s=e(),d=s;return o=s,d(r)},i=r=>o(r);return i.shape={codec:"_void"},i},T={Sequence:we,Array:Ae,Tuple:Oe,Struct:je,Enum:Re};var Be=T.Tuple(),oe=e=>(...o)=>{let i=e(...o);return{shape:i.shape,decoder:i}},G=(e,o,i)=>{let r=(0,O.enhanceDecoder)(e,s=>({...s,[o]:i}));return r.shape=e.shape,r},qe=e=>(o,i,r,s,...d)=>{let{path:c}=s[o.id],m=e(o,i,r,s,...d);return c.length?G(m,"path",c):m},$e=(e,o,i,r,s)=>{if(e.type==="primitive")return C[e.value];if(e.type==="compact")return e.isBig?C.compactBn:C.compactNumber;if(e.type==="bitSequence")return C.bitSequence;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8")return C.Bytes;let d=n=>ie(n,o,i,r,s),c=(n,l)=>{let u=d(n);return l?T.Array(u,l):T.Sequence(u)},m=(n,l)=>G(T.Tuple(...n.map(d)),"innerDocs",l),h=(n,l)=>G(T.Struct((0,_.mapStringRecord)(n,d)),"innerDocs",l);if(e.type==="array")return e.value.type==="primitive"&&e.value.value==="u8"?e.len===32&&(e.id===0||e.id===1)?s:C.BytesArray(e.len):c(e.value,e.len);if(e.type==="sequence")return c(e.value);if(e.type==="tuple")return m(e.value,e.innerDocs);if(e.type==="struct")return h(e.value,e.innerDocs);let p=Object.values(e.value).map(n=>n.type==="primitive"?C._void:n.type==="tuple"&&n.value.length===1?d(n.value[0]):n.type==="tuple"?m(n.value,n.innerDocs):h(n.value,n.innerDocs)),y=Object.fromEntries(Object.keys(e.value).map((n,l)=>[n,p[l]])),b=Object.values(e.value).map(n=>n.idx),v=b.every((n,l)=>n===l)?T.Enum(y):T.Enum(y,b),t=(0,O.enhanceDecoder)(v,n=>{let l=e.innerDocs[n.value.type];return{...n,docs:l}});return t.shape=v.shape,t},We=qe($e),ie=w(We,ne,(e,o)=>(o.shape=e.shape,e)),ae=e=>`0x${e.toString(16).padEnd(2,"0")}`,se=e=>{let o=e.lookup,i=new Map,r=a=>ie(s(a),i,new Set,o,d),s=L(o),d=C.AccountId,c=e.pallets.find(a=>a.name==="System")?.constants.find(a=>a.name==="SS58Prefix");if(c)try{let a=r(c.type)(c.value).value;typeof a=="number"&&(d=K(a))}catch{}let m=oe(r),h=(0,O.createDecoder)(a=>{let v=O.u8.dec(a),t=e.pallets.find(g=>g.index===v);if(!t)throw new Error("Invalid Pallet");let n={value:{name:t.name,idx:v},input:ae(a[0])},l=r(t.calls),u=l(a);if(u.codec!=="Enum")throw null;let S={value:{name:u.value.type,idx:a[1]},input:ae(a[1]),docs:u.docs};return{pallet:n,call:S,args:{value:u.value.value,shape:l.shape}}}),p=oe((a,v=!1)=>a.type==="primitive"?v?Be:C._void:a.type==="tuple"?T.Tuple(...Object.values(a.value).map(t=>r(t.id))):T.Struct((0,_.mapObject)(a.value,t=>r(t.id)))),y=a=>(v,t)=>{let n=e.pallets.find(S=>S.name===v),l=s(n[a]);if(l.type!=="enum")throw null;let u=l.value[t];return{location:[n.index,u.idx],view:p(u,a==="calls")}},b=(a,v)=>{let t=e.pallets.find(n=>n.name===a).constants.find(n=>n.name===v);return m(t.type)};return{buildDefinition:m,callDecoder:h,buildEvent:y("events"),buildError:y("errors"),buildCall:y("calls"),buildConstant:b}}; | ||
`);return`${l}${g}${f}`},p=()=>[...i.enums.keys()],y=l=>N[l]??i.variables.get(l)?.types??l;return{buildDefinition:a,buildStorage:v,buildEvent:d("events"),buildError:d("errors"),buildCall:d("calls"),buildRuntimeCall:s,buildConstant:n,getTypeFromVarName:y,getCode:t,getEnums:p}};var S=Q(require("@polkadot-api/substrate-bindings"));var Z=require("@polkadot-api/utils"),ge=S.Bin(),Se=(e,o,i,r)=>{if(e.type==="primitive")return S[e.value];if(e.type==="AccountId32")return r;if(e.type==="compact")return S.compact;if(e.type==="bitSequence")return S.bitSequence;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8")return ge;let u=s=>ee(s,o,i,r),c=(s,d)=>{let n=u(s);return d?S.Vector(n,d):S.Vector(n)},b=s=>S.Tuple(...s.map(u)),a=s=>{let d=Object.fromEntries(Object.entries(s).map(([n,t])=>[n,u(t)]));return S.Struct(d)};if(e.type==="array")return e.value.type==="primitive"&&e.value.value==="u8"?S.Bin(e.len):c(e.value,e.len);if(e.type==="sequence")return c(e.value);if(e.type==="tuple")return b(e.value);if(e.type==="struct")return a(e.value);if(e.type==="option")return S.Option(u(e.value));if(e.type==="result")return S.Result(u(e.value.ok),u(e.value.ko));let h=Object.values(e.value).map(s=>s.type==="primitive"?S._void:s.type==="tuple"&&s.value.length===1?u(s.value[0]):s.type==="tuple"?b(s.value):a(s.value)),m=Object.fromEntries(Object.keys(e.value).map((s,d)=>[s,h[d]])),D=Object.values(e.value).map(s=>s.idx);return D.every((s,d)=>s===d)?S.Variant(m):S.Variant(m,D)},ee=L(Se,S.Self,e=>e),fe=e=>{let o=e.lookup,i=P(o),r=S.AccountId(),u=new Map,c=t=>ee(i(t),u,new Set,r),b=e.pallets.find(t=>t.name==="System")?.constants.find(t=>t.name==="SS58Prefix"),a;if(b)try{let t=c(b.type).dec(b.value);typeof t=="number"&&(a=t,r=S.AccountId(t))}catch{}let h=new Map,m=(t,p)=>{let y=h.get(t);y||h.set(t,y=S.Storage(t));let l=e.pallets.find(R=>R.name===t).storage.items.find(R=>R.name===p),g=(R,...U)=>{let Y=y(...U);return{...Y,len:R,fallback:l.modifier===1?Y.dec(l.fallback):void 0}};if(l.type.tag==="plain")return g(0,p,c(l.type.value).dec);let{key:f,value:E,hashers:T}=l.type.value,V=c(E),w=T.map(R=>S[R.tag]),I=w.length===1?[[c(f),w[0]]]:i(f).value.map((R,U)=>[c(R.id),w[U]]);return g(w.length,p,V.dec,...I)},D=t=>t.type==="primitive"?S._void:t.type==="tuple"?S.Tuple(...Object.values(t.value).map(p=>c(p.id))):S.Struct((0,Z.mapObject)(t.value,p=>c(p.id))),v=(t,p)=>{let y=e.pallets.find(l=>l.name===t).constants.find(l=>l.name===p);return c(y.type)},s=t=>(p,y)=>{let l=e.pallets.find(E=>E.name===p),g=i(l[t]);if(g.type!=="enum")throw null;let f=g.value[y];return{location:[l.index,f.idx],codec:D(g.value[y])}},d=(t,p)=>{let y=e.pallets.find(f=>f.name===t),l=i(y.calls);if(l.type!=="enum")throw null;let g=l.value[p];return{location:[y.index,g.idx],args:D(l.value[p])}},n=(t,p)=>{let y=e.apis.find(l=>l.name===t)?.methods.find(l=>l.name===p);if(!y)throw null;return{args:S.Tuple(...y.inputs.map(l=>c(l.type))),value:c(y.output)}};return{buildDefinition:c,buildStorage:m,buildEvent:s("events"),buildError:s("errors"),buildRuntimeCall:n,buildCall:d,buildConstant:v,ss58Prefix:a}};var K=require("@polkadot-api/substrate-bindings");var te=new TextEncoder,De=te.encode.bind(te),k=(e,o)=>{let i=typeof o=="string",r=new Uint8Array((e.length+(i?1:0))*8),u=new DataView(r.buffer),c=0;i&&(u.setBigUint64(c,(0,K.h64)(De(o))),c+=8);for(let b=0;b<e.length;b++,c+=8)u.setBigUint64(c,e[b]);return(0,K.h64)(r)},W={_void:0n,bool:1n,char:2n,str:3n,u8:4n,u16:5n,u32:6n,u64:7n,u128:8n,u256:9n,i8:5n,i16:5n,i32:6n,i64:7n,i128:8n,i256:9n,compacts:10n,compactb:11n,bitSequence:12n,historicMetaCompat:13n},Ee=14n,xe=(e,o,i)=>{if(o.has(e.id))return o.get(e.id);if(e.type==="primitive")return W[e.value];if(e.type==="compact")return W[e.isBig?"compactb":"compacts"];if(e.type==="bitSequence")return W.bitSequence;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8")return Ee;let r=m=>re(m,o,i),u=(m,D)=>{let v=r(m);return D?k([v,BigInt(D)],"Vector(,)"):k([v],"Vector()")},c=m=>k(m.map(r)),b=m=>k(Object.values(m).map(r),JSON.stringify(Object.keys(m)));if(e.type==="array")return u(e.value,e.len);if(e.type==="sequence")return u(e.value);if(e.type==="tuple")return c(e.value);if(e.type==="struct")return b(e.value);if(e.type==="option")return k([r(e.value)],"Option()");if(e.type==="result")return k([e.value.ok,e.value.ko].map(r),"Result()");if(e.type==="AccountId32")return k([W.u8,32n],"AccountId32");let a=Object.values(e.value).map(m=>m.type==="primitive"?0n:m.type==="tuple"?c(m.value):b(m.value)),h=Object.keys(e.value);return h.push("Enum"),k(a,JSON.stringify({Enum:h}))},re=L(xe,()=>0n,e=>e),ke=e=>{let o=e.lookup,i=P(o),r=new Map,u=v=>re(i(v),r,new Set),c=(v,s)=>{try{let d=e.pallets.find(l=>l.name===v).storage.items.find(l=>l.name===s);if(d.type.tag==="plain")return k([u(d.type.value)]);let{key:n,value:t}=d.type.value,p=u(t),y=d.type.value.hashers.length===1?k([u(n)]):u(n);return k([p,y])}catch{return null}},b=(v,s)=>{try{let d=e.apis.find(t=>t.name===v)?.methods.find(t=>t.name===s);if(!d)throw null;let n=k(d.inputs.map(t=>u(t.type)),`(${d.inputs.map(t=>t.name).join(",")})`);return k([n,u(d.output)])}catch{return null}},a=v=>{if(v.type==="primitive")return 0n;let s=Object.values(v.value).map(d=>u(d.id));return v.type==="tuple"?k(s):k(s,JSON.stringify(Object.keys(v.value)))},h=v=>(s,d)=>{try{let n=e.pallets.find(p=>p.name===s),t=i(n[v]);if(t.type!=="enum")throw null;return a(t.value[d])}catch{return null}},m=(v,s)=>{try{let d=e.pallets.find(n=>n.name===v).constants.find(n=>n.name===s);return u(d.type)}catch{return null}},D=v=>(...s)=>v(...s)?.toString(32)??null;return{buildDefinition:D(u),buildRuntimeCall:D(b),buildStorage:D(c),buildCall:D(h("calls")),buildEvent:D(h("events")),buildError:D(h("errors")),buildConstant:D(m)}};var H=require("@polkadot-api/utils"),j=require("@polkadot-api/substrate-bindings");var B=require("@polkadot-api/utils"),x=Q(require("@polkadot-api/substrate-bindings")),Ve=B.toHex,ne=(e,o)=>x.createDecoder(i=>{let r=i,u=r.i,c=e(r),b=Ve(new Uint8Array(r.buffer.slice(u,r.i)));return{...o,value:c,input:b}}),M=(e,o,i)=>{let r=ne(o,{codec:e,...i});return Object.assign(r,{shape:{codec:e}})},$=(e,o,i)=>{let r=ne(o,{codec:e.codec,...i});return Object.assign(r,{shape:e})},G=(e=42)=>{let o=x.enhanceDecoder(x.AccountId(e).dec,i=>({address:i,ss58Prefix:e}));return M("AccountId",o,{})},Ce=e=>M("BytesArray",x.Hex.dec(e),{len:e}),Te=["_void","bool","char","str","u8","u16","u32","i8","i16","i32","u64","u128","u256","i64","i128","i256","compactNumber","compactBn","bitSequence"],Oe=Object.fromEntries(Te.map(e=>[e,M(e,x[e].dec)])),O={...Oe,Bytes:M("Bytes",x.Hex.dec()),BytesArray:Ce,AccountId:G()},Re=e=>$({codec:"Sequence",shape:e.shape},x.Vector.dec(e)),Pe=(e,o)=>$({codec:"Array",shape:e.shape,len:o},x.Vector.dec(e,o)),Ae=(...e)=>$({codec:"Tuple",shape:e.map(o=>o.shape)},x.Tuple.dec(...e)),Le=e=>$({codec:"Struct",shape:(0,B.mapStringRecord)(e,o=>o.shape)},x.Struct.dec(e)),we=(e,o)=>$({codec:"Enum",shape:(0,B.mapStringRecord)(e,i=>i.shape)},x.Variant.dec(e,o)),$e=e=>$({codec:"Option",shape:e.shape},x.Option.dec(e)),je=(e,o)=>$({codec:"Result",shape:{ok:e.shape,ko:o.shape}},x.Result.dec(e,o)),oe=e=>{let o=r=>{let u=e(),c=u;return o=u,c(r)},i=r=>o(r);return i.shape={codec:"_void"},i},C={Sequence:Re,Array:Pe,Tuple:Ae,Struct:Le,Enum:we,Option:$e,Result:je};var Ie=C.Tuple(),ae=e=>(...o)=>{let i=e(...o);return{shape:i.shape,decoder:i}},J=(e,o,i)=>{let r=(0,j.enhanceDecoder)(e,u=>({...u,[o]:i}));return r.shape=e.shape,r},Be=e=>(o,i,r,u,...c)=>{let{path:b}=u[o.id],a=e(o,i,r,u,...c);return b.length?J(a,"path",b):a},_e=(e,o,i,r,u)=>{if(e.type==="primitive")return O[e.value];if(e.type==="AccountId32")return u;if(e.type==="compact")return e.isBig?O.compactBn:O.compactNumber;if(e.type==="bitSequence")return O.bitSequence;if(e.type==="sequence"&&e.value.type==="primitive"&&e.value.value==="u8")return O.Bytes;let c=t=>ie(t,o,i,r,u),b=(t,p)=>{let y=c(t);return p?C.Array(y,p):C.Sequence(y)},a=(t,p)=>J(C.Tuple(...t.map(c)),"innerDocs",p),h=(t,p)=>J(C.Struct((0,H.mapStringRecord)(t,c)),"innerDocs",p);if(e.type==="array")return e.value.type==="primitive"&&e.value.value==="u8"?O.BytesArray(e.len):b(e.value,e.len);if(e.type==="sequence")return b(e.value);if(e.type==="tuple")return a(e.value,e.innerDocs);if(e.type==="struct")return h(e.value,e.innerDocs);if(e.type==="option")return C.Option(c(e.value));if(e.type==="result")return C.Result(c(e.value.ok),c(e.value.ko));let m=Object.values(e.value).map(t=>t.type==="primitive"?O._void:t.type==="tuple"&&t.value.length===1?c(t.value[0]):t.type==="tuple"?a(t.value,t.innerDocs):h(t.value,t.innerDocs)),D=Object.fromEntries(Object.keys(e.value).map((t,p)=>[t,m[p]])),v=Object.values(e.value).map(t=>t.idx),d=v.every((t,p)=>t===p)?C.Enum(D):C.Enum(D,v),n=(0,j.enhanceDecoder)(d,t=>{let p=e.innerDocs[t.value.type];return{...t,docs:p}});return n.shape=d.shape,n},qe=Be(_e),ie=L(qe,oe,(e,o)=>(o.shape=e.shape,e)),se=e=>`0x${e.toString(16).padEnd(2,"0")}`,ce=e=>{let o=e.lookup,i=new Map,r=s=>ie(u(s),i,new Set,o,c),u=P(o),c=O.AccountId,b=e.pallets.find(s=>s.name==="System")?.constants.find(s=>s.name==="SS58Prefix");if(b)try{let s=r(b.type)(b.value).value;typeof s=="number"&&(c=G(s))}catch{}let a=ae(r),h=(0,j.createDecoder)(s=>{let d=j.u8.dec(s),n=e.pallets.find(g=>g.index===d);if(!n)throw new Error("Invalid Pallet");let t={value:{name:n.name,idx:d},input:se(s[0])},p=r(n.calls),y=p(s);if(y.codec!=="Enum")throw null;let l={value:{name:y.value.type,idx:s[1]},input:se(s[1]),docs:y.docs};return{pallet:t,call:l,args:{value:y.value.value,shape:p.shape}}}),m=ae((s,d=!1)=>s.type==="primitive"?d?Ie:O._void:s.type==="tuple"?C.Tuple(...Object.values(s.value).map(n=>r(n.id))):C.Struct((0,H.mapObject)(s.value,n=>r(n.id)))),D=s=>(d,n)=>{let t=e.pallets.find(l=>l.name===d),p=u(t[s]);if(p.type!=="enum")throw null;let y=p.value[n];return{location:[t.index,y.idx],view:m(y,s==="calls")}},v=(s,d)=>{let n=e.pallets.find(t=>t.name===s).constants.find(t=>t.name===d);return a(n.type)};return{buildDefinition:a,callDecoder:h,buildEvent:D("events"),buildError:D("errors"),buildCall:D("calls"),buildConstant:v}}; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@polkadot-api/metadata-builders", | ||
"version": "0.0.1-9f22b6da3cc55925307b9899d8e56d4923ba2f0d.1.0", | ||
"version": "0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0", | ||
"author": "Josep M Sobrepere (https://github.com/josepot)", | ||
@@ -43,4 +43,4 @@ "repository": { | ||
"dependencies": { | ||
"@polkadot-api/substrate-bindings": "0.0.1-9f22b6da3cc55925307b9899d8e56d4923ba2f0d.1.0", | ||
"@polkadot-api/utils": "0.0.1-9f22b6da3cc55925307b9899d8e56d4923ba2f0d.1.0" | ||
"@polkadot-api/substrate-bindings": "0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0", | ||
"@polkadot-api/utils": "0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0" | ||
}, | ||
@@ -47,0 +47,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
393368
3296
+ Added@polkadot-api/substrate-bindings@0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0(transitive)
+ Added@polkadot-api/utils@0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0(transitive)
- Removed@polkadot-api/substrate-bindings@0.0.1-9f22b6da3cc55925307b9899d8e56d4923ba2f0d.1.0(transitive)
- Removed@polkadot-api/utils@0.0.1-9f22b6da3cc55925307b9899d8e56d4923ba2f0d.1.0(transitive)
Updated@polkadot-api/substrate-bindings@0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0
Updated@polkadot-api/utils@0.0.1-a6e517c703df6e5e93d495633357b04289fad508.1.0