@goodaofi/bonds-sdk 3.0.173 → 3.0.175
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 +0 -5
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -65519,9 +65519,6 @@ function useCurrencyPrice(currency, chainId) {
|
|
|
65519
65519
|
chainId: chainId,
|
|
65520
65520
|
};
|
|
65521
65521
|
}
|
|
65522
|
-
console.log('tokenPrices: ', tokenPrices?.find((tokenPrice) => chainId &&
|
|
65523
|
-
tokenPrice.chainId === chainId &&
|
|
65524
|
-
tokenPrice?.address?.toLowerCase() === tokenAddress?.toLowerCase()));
|
|
65525
65522
|
return tokenPrices?.find((tokenPrice) => chainId &&
|
|
65526
65523
|
tokenPrice.chainId === chainId &&
|
|
65527
65524
|
tokenPrice?.address?.toLowerCase() === tokenAddress?.toLowerCase());
|
|
@@ -73007,8 +73004,6 @@ const TokenSelectorPanel = ({ typedValue, setTypedValue, selectedToken, chainId,
|
|
|
73007
73004
|
const { address: account } = useAccount();
|
|
73008
73005
|
const tokenBalanceString = tokenBalance ? new BigNumber$1(tokenBalance).toPrecision(5) : 'loading';
|
|
73009
73006
|
const splited = typeof selectedToken !== 'string' ? selectedToken?.symbol?.split('-') : undefined;
|
|
73010
|
-
console.log(getSymbol(selectedToken, chainId));
|
|
73011
|
-
console.log(lodashExports.isArray(splited));
|
|
73012
73007
|
const handleInputChange = (event) => {
|
|
73013
73008
|
setTypedValue(event.target.value);
|
|
73014
73009
|
};
|