@ape.swap/bonds-sdk 4.0.1-test.2 → 4.0.1-test.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +5 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -68005,7 +68005,7 @@ const NETWORK_LABEL = {
|
|
|
68005
68005
|
[types$1.ChainId.SOL]: 'Solana',
|
|
68006
68006
|
[types$1.ChainId.KATANA]: 'Katana',
|
|
68007
68007
|
[types$1.ChainId.UNICHAIN]: 'Unichain',
|
|
68008
|
-
[types$1.ChainId.MEGAETH_TESTNET]: '
|
|
68008
|
+
[types$1.ChainId.MEGAETH_TESTNET]: 'MegaETH Testnet',
|
|
68009
68009
|
};
|
|
68010
68010
|
// Network block explorers
|
|
68011
68011
|
const BLOCK_EXPLORER = {
|
|
@@ -68094,12 +68094,14 @@ const NetworkFilter = ({ chainFilterOption, setChainFilterOption, }) => {
|
|
|
68094
68094
|
alignItems: 'center',
|
|
68095
68095
|
width: '100%',
|
|
68096
68096
|
justifyContent: 'space-between',
|
|
68097
|
-
}, onClick: () => setIsOpen(!isOpen), className: "dropdown", children: [jsx$2(Text, { sx: { lineHeight: '22px', fontSize: '14px', fontWeight: 400, px: '10px' }, children: chainFilterOption.includes('All Chains')
|
|
68097
|
+
}, onClick: () => setIsOpen(!isOpen), className: "dropdown", children: [jsx$2(Text, { sx: { lineHeight: '22px', fontSize: '14px', fontWeight: 400, px: '10px' }, children: chainFilterOption.includes('All Chains')
|
|
68098
|
+
? 'All Chains'
|
|
68099
|
+
: `Chains (${chainFilterOption.includes('All Testnet') ? chainFilterOption.length - 1 : chainFilterOption.length})` }), jsx$2(Flex, { sx: { ml: '5px' }, children: jsx$2(Svg, { icon: "caret", direction: isOpen ? 'up' : 'down' }) })] }), isOpen && (jsxs(Flex, { sx: {
|
|
68098
68100
|
flexDirection: ['column', 'column', 'column'],
|
|
68099
68101
|
position: 'absolute',
|
|
68100
68102
|
top: '45px',
|
|
68101
68103
|
right: '0px',
|
|
68102
|
-
width: '
|
|
68104
|
+
width: '235px',
|
|
68103
68105
|
maxHeight: ['300px', '300px', '350px'],
|
|
68104
68106
|
overflowY: 'scroll',
|
|
68105
68107
|
borderRadius: 'normal',
|