Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions apps/flame-defi/app/components/eol-banner/eol-banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ export const EolBanner = () => {
deposit TIA for gas, withdraw all assets, close LP positions, and swap
tokens. However, you can no longer create new LP positions or add
liquidity.
<br />
<br />
<span className="font-bold">
Note: Transfers of TIA are currently disabled due to technical
issues on the Celestia network.
</span>
</div>
{feedbackFormURL && (
<a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const NeutronChainInfo: CosmosChainInfo = {
};

export const cosmosChains: CosmosChains = {
"Celestia Mocha-4": CelestiaChainInfo,
// "Celestia Mocha-4": CelestiaChainInfo,
"Noble Testnet": NobleChainInfo,
"Neutron Testnet": NeutronChainInfo,
};
Expand Down Expand Up @@ -326,8 +326,8 @@ const FlameChainInfo: AstriaChain = {
isNative: true,
isWrappedNative: false,
ibcWithdrawalFeeWei: "10000000000000000",
isDepositable: true,
isWithdrawable: true,
isDepositable: false,
isWithdrawable: false,
IconComponent: CelestiaIcon,
}),
WRAPPED_NATIVE_TOKEN,
Expand Down
10 changes: 5 additions & 5 deletions apps/flame-defi/app/config/chain-configs/chain-configs-dusk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ const CelestiaChainInfo: CosmosChainInfo = {
coinDenom: "TIA",
coinMinimalDenom: "utia",
coinDecimals: 6,
isDepositable: true,
isWithdrawable: true,
isDepositable: false,
isWithdrawable: false,
isNative: true,
ibcChannel: "channel-159",
sequencerBridgeAccount: "astria17hvahh8lcas4fhl5urqjnhfqwhffkddaw034lh",
Expand Down Expand Up @@ -192,7 +192,7 @@ const NobleChainInfo: CosmosChainInfo = {
};

export const cosmosChains: CosmosChains = {
"Celestia Mocha-4": CelestiaChainInfo,
// "Celestia Mocha-4": CelestiaChainInfo,
"Noble Testnet": NobleChainInfo,
};

Expand Down Expand Up @@ -249,8 +249,8 @@ const FlameChainInfo: AstriaChain = {
isNative: true,
isWrappedNative: false,
ibcWithdrawalFeeWei: "10000000000000000",
isDepositable: true,
isWithdrawable: true,
isDepositable: false,
isWithdrawable: false,
IconComponent: CelestiaIcon,
}),
WRAPPED_NATIVE_TOKEN,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ const StrideChainInfo: CosmosChainInfo = {
};

export const cosmosChains: CosmosChains = {
Celestia: CelestiaChainInfo,
// Celestia: CelestiaChainInfo,
Neutron: NeutronChainInfo,
Noble: NobleChainInfo,
Osmosis: OsmosisChainInfo,
Expand Down Expand Up @@ -390,8 +390,8 @@ const AstriaChainInfo: AstriaChain = {
isNative: true,
isWrappedNative: false,
ibcWithdrawalFeeWei: "10000000000000000",
isDepositable: true,
isWithdrawable: true,
isDepositable: false,
isWithdrawable: false,
IconComponent: CelestiaIcon,
}),
WRAPPED_NATIVE_TOKEN,
Expand Down
Loading