Skip to content

Commit 3e9d514

Browse files
committed
pryzm: add workaround for IBC denom clashing
1 parent 94c810c commit 3e9d514

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

projects/pryzm/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ async function tvl(api) {
6161
) {
6262
continue
6363
}
64-
api.add(denom, amount);
64+
if (denom === 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986')
65+
api.addCGToken('terra-luna-2', amount/1e6)
66+
else
67+
api.add(denom, amount);
6568
}
6669
}
6770

0 commit comments

Comments
 (0)