|
@@ -12,7 +12,7 @@ import workingGroup from './working-group'
|
|
|
import discovery from './discovery'
|
|
|
import storage from './storage'
|
|
|
import proposals from './proposals'
|
|
|
-import contentDirectory from './content'
|
|
|
+import content from './content'
|
|
|
import legacy from './legacy'
|
|
|
import { InterfaceTypes } from '@polkadot/types/types/registry'
|
|
|
import { TypeRegistry, Text, UInt, Null, bool, Option, Vec, BTreeSet, BTreeMap } from '@polkadot/types'
|
|
@@ -34,7 +34,7 @@ export {
|
|
|
discovery,
|
|
|
storage,
|
|
|
proposals,
|
|
|
- contentDirectory,
|
|
|
+ content,
|
|
|
}
|
|
|
|
|
|
export const types: RegistryTypes = {
|
|
@@ -53,7 +53,7 @@ export const types: RegistryTypes = {
|
|
|
...discovery,
|
|
|
...storage,
|
|
|
...proposals,
|
|
|
- ...contentDirectory,
|
|
|
+ ...content,
|
|
|
}
|
|
|
|
|
|
// Allows creating types without api instance (it's not a recommended way though, so should be used just for mocks)
|