File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export const TokenSupply = (props: ISupply) => {
9
9
const classCell =
10
10
"text-sm text-center py-4 lg:min-h-96px border-t border-solid border-color-cell-border" ;
11
11
return (
12
- < div className = "md:grid grid-cols-4 mx-auto" >
12
+ < div className = "md:grid grid-cols-3 mx-auto" >
13
13
< div className = { classCell } >
14
14
< h3 className = { classTitle } > Locked by governance</ h3 >
15
15
< strong >
@@ -24,10 +24,6 @@ export const TokenSupply = (props: ISupply) => {
24
24
< h3 className = { classTitle } > Locked rewards</ h3 >
25
25
< strong > { noDecimals ( toCurrency ( props . lockedRewards ) ) } tokens</ strong >
26
26
</ div >
27
- < div className = { classCell } >
28
- < h3 className = { classTitle } > Time locked</ h3 >
29
- < strong > { noDecimals ( toCurrency ( props . timeLocked ) ) } tokens</ strong >
30
- </ div >
31
27
</ div >
32
28
) ;
33
29
} ;
Original file line number Diff line number Diff line change @@ -95,10 +95,8 @@ export const Supply = {
95
95
18 ,
96
96
) ;
97
97
console . log ( "Locked Rewards" , lockedRewards ) ;
98
- const timeLocked = withDecimals (
99
- ( await supplyContract . getTimelocked ( ) ) . toString ( ) ,
100
- 18 ,
101
- ) ;
98
+ // There are no longer any time-locked tokens
99
+ const timeLocked = withDecimals ( "0" , 18 ) ;
102
100
console . log ( "Time locked" , timeLocked ) ;
103
101
104
102
await prisma . api3Supply . create ( {
You can’t perform that action at this time.
0 commit comments