3022ae9a6a
* style: fund account font size adjustments * client instance. contract addresses updates. prices hook added * persist lend assets value for every credit account * feat: account stats and semi circular progress * minor code cleanup * display borrowed assets interest rate * fallback screen when no wallet is connected * fix: hydration mismatch * update osmosis testnet endpoints * style: body text color * coin interface imported from cosmos package * risk calculation from ltv assets comment added * svgr setup. inline svg extracted to Icons folder * address removed from local storage. wallet store improvements * rename setAddress action to connect * yield page renamed to earn * refactor: accountStats using BigNumber * update contract addresses * update hardcoded fee * update market mocked values * current leverage added to useAccountStats hook return * leverage naming disambiguation * debt positions labels color update. negative sign before values * remove prefers-color-scheme media query * update redbank mock data
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
import { chain } from 'utils/chains'
|
|
|
|
// StdFee
|
|
// TODO: decide some strategy to handle fees
|
|
export const hardcodedFee = {
|
|
amount: [
|
|
{
|
|
denom: chain.stakeCurrency.coinMinimalDenom,
|
|
amount: '100000',
|
|
},
|
|
],
|
|
gas: '1500000',
|
|
}
|