Skip to content

Commit

Permalink
feature: added some spacing to mesh output to make it better readable
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Apr 4, 2024
1 parent e94726f commit d55f6cf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/commands/token/mesh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export const mesh = async (testnets: boolean = false, verbose?: boolean) => {
network.addresses?.tokens?.MASA && network.isTestnet === testnets,
);

console.log("");

for (const network of masaTokenNetworks) {
const networkMasa = new Masa({
networkName: network.networkName,
Expand Down Expand Up @@ -75,5 +77,7 @@ export const mesh = async (testnets: boolean = false, verbose?: boolean) => {
console.log(`${networkOFT.address} -> ${peerOFT.address}`);
}
}

console.log("");
}
};

0 comments on commit d55f6cf

Please sign in to comment.