File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,12 @@ chainListSupply.concat(chainListTotal).forEach(chain => {
25
25
if ( ! assetTvl ) return ;
26
26
27
27
const isEVM = assetTvl . gateway_address ?. startsWith ( '0x' )
28
+ const data = assetTvl . contract_data
28
29
if ( isEVM ) {
29
- if ( assetTvl . contract_data . symbol . startsWith ( 'axl' ) ) return ;
30
- tokensAndOwners . push ( [ assetTvl . contract_data . address , assetTvl . gateway_address ] )
30
+ if ( data . symbol . startsWith ( 'axl' ) ) return ;
31
+ tokensAndOwners . push ( [ data . address , assetTvl . gateway_address ] )
32
+ if ( data . token_manager_address )
33
+ tokensAndOwners . push ( [ data . address , data . token_manager_address ] )
31
34
} else {
32
35
if ( assetTvl . denom_data . symbol . startsWith ( 'axl' ) ) return ;
33
36
owners . push ( ...assetTvl . source_escrow_addresses )
You can’t perform that action at this time.
0 commit comments