Skip to content

Commit bd22c04

Browse files
committed
feat: add additional columns for pool version, custom, and min blocks in TokenChainsTable
1 parent ddf4936 commit bd22c04

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/components/CCIP/Tables/TokenChainsTable.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ function TokenChainsTable({ networks, token, lanes, environment }: TableProps) {
6060
<th>Token address</th>
6161
<th>Token pool type</th>
6262
<th>Token pool address</th>
63+
<th>Pool version</th>
64+
<th>Custom</th>
65+
<th>Min Blocks required</th>
6366
</tr>
6467
</thead>
6568
<tbody>
@@ -125,7 +128,7 @@ function TokenChainsTable({ networks, token, lanes, environment }: TableProps) {
125128
<Address
126129
contractUrl={getExplorerAddressUrl(network.explorer, network.chainType)(network.tokenAddress)}
127130
address={network.tokenAddress}
128-
endLength={6}
131+
endLength={4}
129132
/>
130133
</td>
131134
<td>{tokenPoolDisplay(network.tokenPoolType)}</td>
@@ -136,9 +139,12 @@ function TokenChainsTable({ networks, token, lanes, environment }: TableProps) {
136139
network.chainType
137140
)(network.tokenPoolAddress)}
138141
address={network.tokenPoolAddress}
139-
endLength={6}
142+
endLength={4}
140143
/>
141144
</td>
145+
<td>TBC</td>
146+
<td>TBC</td>
147+
<td>TBC</td>
142148
</tr>
143149
)
144150
})}

0 commit comments

Comments
 (0)