diff --git a/packages/website/domain/chain/baseTypes.ts b/packages/website/domain/chain/baseTypes.ts index 2c2b53c8466..101f9414d7c 100644 --- a/packages/website/domain/chain/baseTypes.ts +++ b/packages/website/domain/chain/baseTypes.ts @@ -118,7 +118,6 @@ interface Alpha5RollupContracts { erc20Contracts: { bridgedTaikoToken: ERC20Contract; bridgedHorseToken: ERC20Contract; - bridgedBullToken: ERC20Contract; }; } diff --git a/packages/website/domain/chain/jolnir/addTokens.ts b/packages/website/domain/chain/jolnir/addTokens.ts index c6d95cb0e4b..3b05bc34a6a 100644 --- a/packages/website/domain/chain/jolnir/addTokens.ts +++ b/packages/website/domain/chain/jolnir/addTokens.ts @@ -11,16 +11,6 @@ export const JOLNIR_ADD_TTKOJ: AddTokenParameter = { "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/ttko.svg", }; -export const JOLNIR_ADD_BLL: AddTokenParameter = { - address: - JOLNIR_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.address.impl, - symbol: JOLNIR_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.symbol, - decimals: - JOLNIR_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.decimals, - image: - "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/bull.svg", -}; - export const JOLNIR_ADD_HORSE: AddTokenParameter = { address: JOLNIR_CONFIG.rollupContracts.erc20Contracts.bridgedHorseToken.address.impl, @@ -33,6 +23,5 @@ export const JOLNIR_ADD_HORSE: AddTokenParameter = { export const JOLNIR_ADD_TOKENS = [ JOLNIR_ADD_TTKOJ, - JOLNIR_ADD_BLL, JOLNIR_ADD_HORSE, ]; diff --git a/packages/website/domain/chain/jolnir/config.ts b/packages/website/domain/chain/jolnir/config.ts index 94104618fbe..82b381b2413 100644 --- a/packages/website/domain/chain/jolnir/config.ts +++ b/packages/website/domain/chain/jolnir/config.ts @@ -97,15 +97,6 @@ export const JOLNIR_CONFIG = { decimals: 18, symbol: "HORSE", }, - bridgedBullToken: { - name: "Bridged Bull Token", - address: { - proxy: "0xc02D1fE3aA2134D2d7561e99f0A699C5Ca7B44ED", - impl: "0x073C9b4Ed7059eEdd2ad6F8a8bFd48AAB2413eC3", - }, - decimals: 18, - symbol: "BLL", - }, }, }, otherContracts: { diff --git a/packages/website/domain/chain/sepolia/addTokens.ts b/packages/website/domain/chain/sepolia/addTokens.ts index a2c17d2b517..785d9317faa 100644 --- a/packages/website/domain/chain/sepolia/addTokens.ts +++ b/packages/website/domain/chain/sepolia/addTokens.ts @@ -8,13 +8,6 @@ export const SEPOLIA_ADD_TTKO: AddTokenParameter = { image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/ttko.svg" }; -export const SEPOLIA_ADD_BLL: AddTokenParameter = { - address: SEPOLIA_CONFIG.basedContracts.erc20Contracts.bullToken.address.impl, - symbol: SEPOLIA_CONFIG.basedContracts.erc20Contracts.bullToken.symbol, - decimals: SEPOLIA_CONFIG.basedContracts.erc20Contracts.bullToken.decimals, - image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/bull.svg" -}; - export const SEPOLIA_ADD_HORSE: AddTokenParameter = { address: SEPOLIA_CONFIG.basedContracts.erc20Contracts.horseToken.address.impl, @@ -25,7 +18,6 @@ export const SEPOLIA_ADD_HORSE: AddTokenParameter = { export const SEPOLIA_ADD_TOKENS = [ SEPOLIA_ADD_TTKO, - SEPOLIA_ADD_BLL, SEPOLIA_ADD_HORSE ] diff --git a/packages/website/domain/chain/sepolia/config.ts b/packages/website/domain/chain/sepolia/config.ts index 094bb25130f..f1b72181c51 100644 --- a/packages/website/domain/chain/sepolia/config.ts +++ b/packages/website/domain/chain/sepolia/config.ts @@ -100,14 +100,6 @@ export const SEPOLIA_CONFIG = { impl: "0xe9f36Ec3F1B8056A67a2B542551D248D511aA7d6", }, }, - bullToken: { - name: "Bull Token", - symbol: "BLL", - decimals: 18, - address: { - impl: "0x0505f8EA58319b96bd7FffCec82d29AcC78Fb57e", - }, - }, }, }, otherContracts: {}, diff --git a/packages/website/pages/docs/guides/bridge-tokens.mdx b/packages/website/pages/docs/guides/bridge-tokens.mdx index 2febdf1ecde..68636ed59fc 100644 --- a/packages/website/pages/docs/guides/bridge-tokens.mdx +++ b/packages/website/pages/docs/guides/bridge-tokens.mdx @@ -2,13 +2,6 @@ import { Callout, Steps } from "nextra-theme-docs"; # Bridge tokens - - The BLL token is **expected to fail** about 50% of the time when - bridging--this is done intentionally to test error handling. - - -## Overview - This guide will help you use the bridge to send tokens between Sepolia and Taiko. You can read more about how bridging works [here](/docs/concepts/bridging). ## Prerequisites diff --git a/packages/website/pages/docs/guides/receive-tokens.mdx b/packages/website/pages/docs/guides/receive-tokens.mdx index 0e0d1657b08..8e7c2e3fb98 100644 --- a/packages/website/pages/docs/guides/receive-tokens.mdx +++ b/packages/website/pages/docs/guides/receive-tokens.mdx @@ -21,9 +21,6 @@ This guide will help you receive testnet tokens. You can see all the deployed to ### Receive HORSE Navigate to the [bridge](https://bridge.jolnir.taiko.xyz) and click "Faucet" on the sidebar. - ### Receive BLL - Repeat the previous step for receiving HORSE, except select "BLL" from the dropdown. - ### Receive TTKOj TTKOj has been distributed to all proposers and provers from the alpha-1 and alpha-2 testnets and you can see those transactions [here](https://sepolia.etherscan.io/address/0x7532Cd98ED13c0C164dBC7a92D872955c8C99bD3). You can see the script used [here](https://github.com/taikoxyz/operations). TTKOj will be distributed to alpha-3/alpha-4 participants very soon :) diff --git a/packages/website/pages/docs/guides/swap-tokens.mdx b/packages/website/pages/docs/guides/swap-tokens.mdx index 788b5b1a993..3c03d0c3dc1 100644 --- a/packages/website/pages/docs/guides/swap-tokens.mdx +++ b/packages/website/pages/docs/guides/swap-tokens.mdx @@ -6,7 +6,7 @@ This guide will help you interact with Swap, which is a fork of Uniswap v2 that ## Prerequisites -- You must have some tokens to swap on Taiko, and ETH to cover the gas cost. You can [receive some ETH, HORSE, and BLL from the faucets](/docs/guides/receive-tokens) and then [bridge them to Taiko](/docs/guides/bridge-tokens). +- You must have some tokens to swap on Taiko, and ETH to cover the gas cost. You can [receive some ETH and HORSE from the faucets](/docs/guides/receive-tokens) and then [bridge them to Taiko](/docs/guides/bridge-tokens). ## Steps