stargaze-studio/utils/fees.ts

13 lines
270 B
TypeScript
Raw Normal View History

2022-07-13 13:56:36 +00:00
import { coins } from '@cosmjs/stargate'
import { getConfig } from 'config'
import { NETWORK } from './constants'
export const getExecuteFee = () => {
const config = getConfig(NETWORK)
return {
amount: coins(500000, config.feeToken),
gas: '1000000',
}
}