File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ export interface ChainMetadata {
2929 pair : string [ ]
3030 path : string
3131 proxyAddress : null | string
32+ secondaryProxyAddress ?: string
3233 threshold : number
3334 valuePrefix : string
3435 assetName : string
Original file line number Diff line number Diff line change @@ -789,6 +789,10 @@ export const MainnetTable = ({
789789 ( pair ) =>
790790 pair . name . toLowerCase ( ) . replaceAll ( " " , "" ) . includes ( searchValue . toLowerCase ( ) . replaceAll ( " " , "" ) ) ||
791791 pair . proxyAddress ?. toLowerCase ( ) . replaceAll ( " " , "" ) . includes ( searchValue . toLowerCase ( ) . replaceAll ( " " , "" ) ) ||
792+ pair . secondaryProxyAddress
793+ ?. toLowerCase ( )
794+ . replaceAll ( " " , "" )
795+ . includes ( searchValue . toLowerCase ( ) . replaceAll ( " " , "" ) ) ||
792796 pair . assetName . toLowerCase ( ) . replaceAll ( " " , "" ) . includes ( searchValue . toLowerCase ( ) . replaceAll ( " " , "" ) ) ||
793797 pair . feedType . toLowerCase ( ) . replaceAll ( " " , "" ) . includes ( searchValue . toLowerCase ( ) . replaceAll ( " " , "" ) ) ||
794798 pair . docs . porType ?. toLowerCase ( ) . replaceAll ( " " , "" ) . includes ( searchValue . toLowerCase ( ) . replaceAll ( " " , "" ) ) ||
You can’t perform that action at this time.
0 commit comments