aa42f8763a
* Add instantiate page for minter * Add query page to minter contract * Add execute page for minter contract * Add contracts index page * Refaactor sg721 helper files * Add instantiate page * Add query page for sg721 * Add execute page for sg721 contract * Copy page templates for whitelist contracts * Add instantitate for whitelist contract * Add query page to whitelist contract * Add execute page for whitelist contract
43 lines
935 B
TypeScript
43 lines
935 B
TypeScript
import type { AppConfig } from './app'
|
|
|
|
export const mainnetConfig: AppConfig = {
|
|
chainId: 'stargaze-1',
|
|
chainName: 'Stargaze',
|
|
addressPrefix: 'stars',
|
|
rpcUrl: 'https://rpc.stargaze-apis.com/',
|
|
feeToken: 'ustars',
|
|
stakingToken: 'ustars',
|
|
coinMap: {
|
|
ustars: { denom: 'STARS', fractionalDigits: 6 },
|
|
},
|
|
gasPrice: 0.025,
|
|
fees: {
|
|
upload: 1500000,
|
|
init: 500000,
|
|
exec: 200000,
|
|
},
|
|
}
|
|
|
|
export const testnetConfig: AppConfig = {
|
|
chainId: 'elgafar-1',
|
|
chainName: 'elgarfar-1',
|
|
addressPrefix: 'stars',
|
|
rpcUrl: 'https://rpc.elgafar-1.stargaze-apis.com/',
|
|
feeToken: 'ustars',
|
|
stakingToken: 'ustars',
|
|
coinMap: {
|
|
ustars: { denom: 'STARS', fractionalDigits: 6 },
|
|
},
|
|
gasPrice: 0.025,
|
|
fees: {
|
|
upload: 1500000,
|
|
init: 500000,
|
|
exec: 200000,
|
|
},
|
|
}
|
|
|
|
export const getConfig = (network: string): AppConfig => {
|
|
if (network === 'mainnet') return mainnetConfig
|
|
return testnetConfig
|
|
}
|