Skip to content

Commit

Permalink
Merge pull request #88 from availproject/ghali/fix-upstream
Browse files Browse the repository at this point in the history
fix identities bug
  • Loading branch information
Leouarz authored Aug 28, 2024
2 parents 7ddb19f + 1a843ab commit 37d562d
Show file tree
Hide file tree
Showing 69 changed files with 38,961 additions and 46,280 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
4364 Jaco Disable unreachable endpoints (#10221)
81 Thibaut Sardan update overrides (#10090)
72 Tarik Gul Revert 0d59324dec3fd7b5acd048a93669cb4f34f92037 (#10865)
74 Tarik Gul Allow reserved in voting balance (#10858)
62 kwingram25 iadd fix (#2911)
49 pan update Bifrost kusama on Subsquare (#9752)
46 Antoine Estienne Update moonbeam endpoints and moonbase logo and color (#6890)
Expand Down Expand Up @@ -65,6 +65,7 @@
8 Hging Add MathChain mainnet support (#6214)
8 illlefr4u new additions to Russian translation (#2948)
8 Jakub Jóźwiak Code signing and Notarization (#2794)
8 James Bayly Add Ajuna OnFinality (#9409)
8 José Molina Colmenero Add muse-paseo (#10757)
8 Kai Update Litentry rococo-parachain endpoint (#10086)
8 Milos Kriz Add IBP endpoints to `people-kusama` and HydraDX (#10627)
Expand All @@ -78,7 +79,6 @@
7 Carl Update Subscan network config (#10408)
7 Drew Stone Update production.ts (#5757)
7 icodezjb Update OmniBTC wss url (#8678)
7 James Bayly Add Ajuna OnFinality (#9409)
7 JelliedOwl (Paul) Re-enable Edgeware Beresheet (#10244)
7 Logan Saether Add Zeitgeist para config (#6628)
7 Masterdubs Add Innovatorchain (#10058)
Expand Down Expand Up @@ -289,6 +289,7 @@
2 Nisheeth Barthwal display discord identity in profile sidebar (#9185)
2 Pablo Andrés Dorado Suárez Restore Virto provider for Kreivo in Kusama (#10463)
2 qinghuan add chainx rococo node (#4772)
2 Raphael Flechtner chore(deps): update kilt chain type definitions to v1 (#10850)
2 Robert Gabriel Jakabosky Support BTreeSet. (#9206)
2 Salman Pathan Add tangle to live networks (#10448)
2 sander2 fix: add account derive (#8683)
Expand Down Expand Up @@ -489,7 +490,6 @@
1 Radka Gettová Make Block Hash "Hover to Copy"-able (#458)
1 Rajdeep Singh add collectives to polkassembly links (#9595)
1 Raoul Millais Upgrade @substrate/[email protected] (#5855)
1 Raphael Flechtner chore: use new kilt logo (#5649)
1 Ravi Kumar Add hi_IN translation (#5420)
1 Raymond Zhong Add types for beresheet runtime (#5576)
1 Ricardo Rius Update stable poc types (#3783)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
},
"sideEffects": false,
"type": "module",
"version": "0.143.3-5-x",
"version": "0.143.3-9-x",
"versions": {
"git": "0.143.3-5-x",
"git": "0.143.3-9-x",
"npm": "0.143.2"
},
"workspaces": [
Expand Down
4 changes: 2 additions & 2 deletions packages/apps-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"sideEffects": false,
"type": "module",
"version": "0.143.3-5-x",
"version": "0.143.3-9-x",
"main": "index.js",
"dependencies": {
"@acala-network/type-definitions": "5.1.2",
Expand All @@ -28,7 +28,7 @@
"@fragnova/api-augment": "0.1.0-spec-1.0.4-mainnet",
"@frequency-chain/api-augment": "1.11.1",
"@interlay/interbtc-types": "1.13.0",
"@kiltprotocol/type-definitions": "0.35.1",
"@kiltprotocol/type-definitions": "^1.11200.0",
"@laminar/type-definitions": "0.3.1",
"@logion/node-api": "0.27.0-4",
"@mangata-finance/type-definitions": "^2.1.2",
Expand Down
13 changes: 1 addition & 12 deletions packages/apps-config/src/api/chain/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,10 @@
import type { OverrideBundleDefinition } from '@polkadot/types/types';

import cere from './cere.js';
import kilt from './kilt.js';

if (!kilt) {
throw new Error('Unable to retrieve kilt');
}

// NOTE: The mapping is done from chain name in system.chain
const chain: Record<string, OverrideBundleDefinition> = {
'Cere Mainnet Beta': cere,
'KILT Mashnet': kilt['KILT Mashnet'],
'KILT Peregrine': kilt['KILT Peregrine'],
'KILT Peregrine Develop': kilt['KILT Peregrine Develop'],
'KILT Peregrine Stagenet': kilt['KILT Peregrine Stagenet'],
'KILT Spiritnet': kilt['KILT Spiritnet'],
'KILT Spiritnet Develop': kilt['KILT Spiritnet Develop']
'Cere Mainnet Beta': cere
};

export default chain;
2 changes: 2 additions & 0 deletions packages/apps-config/src/api/spec/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ import jupiter from './jupiter.js';
import jupiterRococo from './jupiter-rococo.js';
import jur from './jur.js';
import khala from './khala.js';
import kilt from './kilt.js';
import konomi from './konomi.js';
import kpron from './kpron.js';
import kulupu from './kulupu.js';
Expand Down Expand Up @@ -225,6 +226,7 @@ const spec: Record<string, OverrideBundleDefinition> = {
'jur-node': jur,
kerria: parallel,
khala,
...kilt,
'kintsugi-parachain': interbtc,
konomi,
kpron,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import { typesBundle } from '@kiltprotocol/type-definitions';

if (!typesBundle.chain) {
throw new Error('Unable to find chain defintions');
if (!typesBundle.spec) {
throw new Error('Unable to find chain definitions');
}

export default typesBundle.chain;
export default typesBundle.spec;
Loading

0 comments on commit 37d562d

Please sign in to comment.