Skip to content

Commit fc56db6

Browse files
authored
fix: rename maia-v3 to maia-cl (#2318)
1 parent f98ffa8 commit fc56db6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
exports.up = (pgm) => {
2+
pgm.sql(`UPDATE config SET project = 'maia-cl' WHERE project = 'maia-v3'`);
3+
};
4+
5+
exports.down = (pgm) => {
6+
pgm.sql(`UPDATE config SET project = 'maia-v3' WHERE project = 'maia-cl'`);
7+
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ const topTvl = async (
325325
return {
326326
pool: p.id,
327327
chain: utils.formatChain(chainString),
328-
project: 'maia-v3',
328+
project: 'maia-cl',
329329
poolMeta: `${poolMeta}, stablePool=${p.stablecoin}`,
330330
symbol: p.symbol,
331331
tvlUsd: p.totalValueLockedUSD,

0 commit comments

Comments
 (0)