-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
424 additions
and
494 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,12 +20,15 @@ | |
"author": "Parity Technologies <[email protected]>", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@polkadot/api": "^12.2.2", | ||
"@polkadot/apps-config": "^0.142.1", | ||
"@polkadot/api": "^13.0.1", | ||
"@polkadot/apps-config": "^0.143.2", | ||
"@substrate/dev": "0.7.1", | ||
"@types/node-fetch": "^2.6.9", | ||
"node-fetch": "2.6.7", | ||
"vitest": "^1.4.0" | ||
}, | ||
"resolutions": { | ||
"@polkadot/types": "13.0.1" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
import { createApiWithAugmentations } from './createApiWithAugmentations'; | ||
import { assetHubKusamaV10400 } from './metadata/assetHubKusamaV10400'; | ||
import { assetHubKusamaV1003000 } from './metadata/assetHubKusamaV1003000'; | ||
|
||
export const mockAssetHubKusamaApi = | ||
createApiWithAugmentations(assetHubKusamaV10400); | ||
export const mockAssetHubKusamaApi = createApiWithAugmentations( | ||
assetHubKusamaV1003000, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
import { createApiWithAugmentations } from './createApiWithAugmentations'; | ||
import { bifrostKusamaV984 } from './metadata/bifrostKusamaV984'; | ||
import { bifrostKusamaV12000 } from './metadata/bifrostKusamaV12000'; | ||
|
||
export const mockBifrostKusamaParachainApi = | ||
createApiWithAugmentations(bifrostKusamaV984); | ||
createApiWithAugmentations(bifrostKusamaV12000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2023 Parity Technologies (UK) Ltd. | ||
|
||
import { createApiWithAugmentations } from './createApiWithAugmentations'; | ||
import { kusamaV9420 } from './metadata/kusamaV9420'; | ||
import { kusamaV1003000 } from './metadata/kusamaV1003000'; | ||
|
||
export const mockKusamaRelayApi = createApiWithAugmentations(kusamaV9420); | ||
export const mockKusamaRelayApi = createApiWithAugmentations(kusamaV1003000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Copyright 2024 Parity Technologies (UK) Ltd. | ||
|
||
import { createApiWithAugmentations } from './createApiWithAugmentations'; | ||
import { polkadotV10800 } from './metadata/polkadotV10800'; | ||
import { polkadotV1002007 } from './metadata/polkadotV1002007'; | ||
|
||
export const mockPolkadotApi = createApiWithAugmentations(polkadotV10800); | ||
export const mockPolkadotApi = createApiWithAugmentations(polkadotV1002007); |
Oops, something went wrong.