Skip to content

Commit

Permalink
feat(orchestration): add more chain infos for fusdc
Browse files Browse the repository at this point in the history
  • Loading branch information
samsiegart committed Jan 15, 2025
1 parent d703190 commit 513d5ba
Show file tree
Hide file tree
Showing 19 changed files with 20,063 additions and 1,848 deletions.
11 changes: 7 additions & 4 deletions multichain-testing/scripts/fetch-starship-chain-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ const ibc: {
data: IBCInfo[];
} = await fetch(`${BASE_URL}ibc`).then(r => r.json());

const chainInfo = await convertChainInfo({
chains,
ibcData: ibc.data,
});
const chainInfo = await convertChainInfo(
{
chains,
ibcData: ibc.data,
},
() => true,
);

const record = JSON.stringify(chainInfo, null, 2);
const src = `/** @file Generated by fetch-starship-chain-info.ts */\nexport default /** @type {const} */ (${record});`;
Expand Down
Loading

0 comments on commit 513d5ba

Please sign in to comment.