Skip to content

Commit

Permalink
chore: rename variable for KusamaAssetHub provider
Browse files Browse the repository at this point in the history
  • Loading branch information
preschian committed Jan 7, 2025
1 parent a66a3f8 commit 9e0ad71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/polkadot-endpoint.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url))

// Find endpoints for both Asset Hubs
const ahp = prodParasPolkadotCommon.find(key => key.info === 'PolkadotAssetHub')
const kahp = prodParasKusamaCommon.find(key => key.info === 'KusamaAssetHub')
const ahk = prodParasKusamaCommon.find(key => key.info === 'KusamaAssetHub')
const ahpProviders = Object.values(ahp?.providers)
const ahkProviders = Object.values(kahp?.providers)
const ahkProviders = Object.values(ahk?.providers)

// Helper function to create provider promises
const createProviderPromises = (urls, network) => urls.map(async (url) => {
Expand Down

0 comments on commit 9e0ad71

Please sign in to comment.