Skip to content

Commit

Permalink
chore: toggle maintain flag
Browse files Browse the repository at this point in the history
  • Loading branch information
meomeocoj committed Sep 5, 2024
1 parent cddcfe7 commit 7d1123a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion components/page/bridge/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ const Bridge = () => {
}

// const isMaintained = fromNetwork.id === NetworkList.oraichain.id;
const isMaintained = true;
const isMaintained = false;

return (
<div className={styles.container}>
Expand Down
2 changes: 1 addition & 1 deletion constants/contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const TonInteractionContract = {
export const TonTokensContract = {
[Environment.Mainnet]: {
usdt: "EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs",
jUSDT: "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA",
// jUSDT: "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA",
ton: TON_ZERO_ADDRESS,
},
[Environment.Staging]: {
Expand Down
38 changes: 19 additions & 19 deletions constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ export const OraichainTokenList: TokenType[] = [
coingeckoId: "tether",
decimal: 6,
},
{
chainId: "Oraichain",
name: "Tether",
symbol: "jUSDT",
Icon: UsdtIcon,
contractAddress: USDT_CONTRACT,
denom: "jusdt",
coingeckoId: "bridged-tether-ton-bridge",
decimal: 6,
},
// {
// chainId: "Oraichain",
// name: "Tether",
// symbol: "jUSDT",
// Icon: UsdtIcon,
// contractAddress: USDT_CONTRACT,
// denom: "jusdt",
// coingeckoId: "bridged-tether-ton-bridge",
// decimal: 6,
// },
{
chainId: "Oraichain",
name: "Ton",
Expand Down Expand Up @@ -82,15 +82,15 @@ export const TonTokenList = (network: Environment): TokenType[] => [
coingeckoId: "tether",
decimal: 6,
},
{
name: "Jetton USDT",
symbol: "jUSDT",
Icon: TetherIcon,
contractAddress: TonTokensContract[network].jUSDT,
denom: "ton20_usdt",
coingeckoId: "bridged-tether-ton-bridge",
decimal: 6,
},
// {
// name: "Jetton USDT",
// symbol: "jUSDT",
// Icon: TetherIcon,
// contractAddress: TonTokensContract[network].jUSDT,
// denom: "ton20_usdt",
// coingeckoId: "bridged-tether-ton-bridge",
// decimal: 6,
// },
{
name: "Ton",
symbol: "TON",
Expand Down

0 comments on commit 7d1123a

Please sign in to comment.