@dedot/chaintypes 0.141.0 → 0.143.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/paseo-asset-hub/consts.d.ts +681 -2
- package/paseo-asset-hub/errors.d.ts +1309 -30
- package/paseo-asset-hub/events.d.ts +1966 -59
- package/paseo-asset-hub/index.d.ts +1 -1
- package/paseo-asset-hub/query.d.ts +1782 -36
- package/paseo-asset-hub/runtime.d.ts +1 -1
- package/paseo-asset-hub/tx.d.ts +5715 -151
- package/paseo-asset-hub/types.d.ts +9421 -1521
- package/paseo-hydration/index.d.ts +1 -1
- package/polkadot-people/consts.d.ts +38 -1
- package/polkadot-people/errors.d.ts +18 -12
- package/polkadot-people/events.d.ts +110 -2
- package/polkadot-people/index.d.ts +1 -1
- package/polkadot-people/query.d.ts +36 -6
- package/polkadot-people/runtime.d.ts +1 -1
- package/polkadot-people/tx.d.ts +204 -0
- package/polkadot-people/types.d.ts +315 -24
|
@@ -79,7 +79,7 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
79
79
|
/**
|
|
80
80
|
* Whether it is legal to extend the chain, assuming the given block is the most
|
|
81
81
|
* recently included one as-of the relay parent that will be built against, and
|
|
82
|
-
* the given slot.
|
|
82
|
+
* the given relay chain slot.
|
|
83
83
|
*
|
|
84
84
|
* This should be consistent with the logic the runtime uses when validating blocks to
|
|
85
85
|
* avoid issues.
|