Skip to content

Commit

Permalink
Merge branch 'main' into release/v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evilpeach committed Jun 28, 2024
2 parents fcd36bc + af3a9a9 commit 8261d57
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 50 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Bug fixes

- [#969](https://github.com/alleslabs/celatone-frontend/pull/969) Fix contract data lcd missing data
- [#942](https://github.com/alleslabs/celatone-frontend/pull/942) Fix asset input
- [#890](https://github.com/alleslabs/celatone-frontend/pull/890) Fix tomcat pretty name
- [#889](https://github.com/alleslabs/celatone-frontend/pull/889) Fix overflow validator table header
- [#886](https://github.com/alleslabs/celatone-frontend/pull/886) Fix tx detail message newline
Expand Down
48 changes: 0 additions & 48 deletions src/config/chain/initia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,54 +7,6 @@ const INITIA_DECODER =
"https://initia-api-jiod42ec2q-as.a.run.app/decode_module";

export const INITIA_CHAIN_CONFIGS: ChainConfigs = {
"tomcat-1-lite": {
tier: "lite",
chain: "initia",
registryChainName: "blackwingtestnet",
prettyName: "Blackwing Testnet Lite",
lcd: "https://maze-rest-18bdff44-3aa4-425e-9bc0-06a2afa40af8.ase1-prod.newmetric.xyz",
rpc: "https://maze-rpc-18bdff44-3aa4-425e-9bc0-06a2afa40af8.ase1-prod.newmetric.xyz",
indexer: "https://tomcat-1-graphql.alleslabs.dev/v1/graphql",
wallets: [...initiaWallets, ...keplrWallets],
features: {
faucet: {
enabled: false,
},
wasm: {
enabled: false,
},
move: {
enabled: true,
moduleMaxFileSize: 1_048_576,
decodeApi: INITIA_DECODER,
verify: "",
},
pool: {
enabled: false,
},
publicProject: {
enabled: true,
},
gov: {
enabled: false,
},
nft: {
enabled: true,
},
},
gas: {
gasPrice: {
tokenPerGas: 0.151,
denom:
"l2/aee375e9d0b181f0d9d3a49f9a3d1d6b05d62b0ac81f8c92b9282afa4213d884",
},
gasAdjustment: 1.5,
maxGasLimit: 25_000_000,
},
extra: {
isValidatorExternalLink: null,
},
},
"initiation-1": {
tier: "full",
chain: "initia",
Expand Down
7 changes: 5 additions & 2 deletions src/lib/components/table/modules/ModulesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ export const ModulesTable = ({
return isMobile ? (
<MobileTableContainer>
{modules.map((module) => (
<ModulesTableMobileCard key={module.moduleName} moduleInfo={module} />
<ModulesTableMobileCard
key={module.moduleName + module.address}
moduleInfo={module}
/>
))}
</MobileTableContainer>
) : (
Expand All @@ -43,7 +46,7 @@ export const ModulesTable = ({
/>
{modules.map((module) => (
<ModulesTableRow
key={module.moduleName}
key={module.moduleName + module.address}
moduleInfo={module}
templateColumns={templateColumns}
isPublishedModules={isPublishedModules}
Expand Down

0 comments on commit 8261d57

Please sign in to comment.