Skip to content

Commit

Permalink
fix(website): remove all traces of BLL (#14770)
Browse files Browse the repository at this point in the history
  • Loading branch information
d1onys1us committed Sep 21, 2023
1 parent 224345d commit 7726028
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 48 deletions.
1 change: 0 additions & 1 deletion packages/website/domain/chain/baseTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ interface Alpha5RollupContracts {
erc20Contracts: {
bridgedTaikoToken: ERC20Contract;
bridgedHorseToken: ERC20Contract;
bridgedBullToken: ERC20Contract;
};
}

Expand Down
11 changes: 0 additions & 11 deletions packages/website/domain/chain/jolnir/addTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -33,6 +23,5 @@ export const JOLNIR_ADD_HORSE: AddTokenParameter = {

export const JOLNIR_ADD_TOKENS = [
JOLNIR_ADD_TTKOJ,
JOLNIR_ADD_BLL,
JOLNIR_ADD_HORSE,
];
9 changes: 0 additions & 9 deletions packages/website/domain/chain/jolnir/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
8 changes: 0 additions & 8 deletions packages/website/domain/chain/sepolia/addTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -25,7 +18,6 @@ export const SEPOLIA_ADD_HORSE: AddTokenParameter = {

export const SEPOLIA_ADD_TOKENS = [
SEPOLIA_ADD_TTKO,
SEPOLIA_ADD_BLL,
SEPOLIA_ADD_HORSE
]

Expand Down
8 changes: 0 additions & 8 deletions packages/website/domain/chain/sepolia/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,6 @@ export const SEPOLIA_CONFIG = {
impl: "0xe9f36Ec3F1B8056A67a2B542551D248D511aA7d6",
},
},
bullToken: {
name: "Bull Token",
symbol: "BLL",
decimals: 18,
address: {
impl: "0x0505f8EA58319b96bd7FffCec82d29AcC78Fb57e",
},
},
},
},
otherContracts: {},
Expand Down
7 changes: 0 additions & 7 deletions packages/website/pages/docs/guides/bridge-tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,6 @@ import { Callout, Steps } from "nextra-theme-docs";

# Bridge tokens

<Callout type="warning">
The BLL token is **expected to fail** about 50% of the time when
bridging--this is done intentionally to test error handling.
</Callout>

## 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
Expand Down
3 changes: 0 additions & 3 deletions packages/website/pages/docs/guides/receive-tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 :)
Expand Down
2 changes: 1 addition & 1 deletion packages/website/pages/docs/guides/swap-tokens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7726028

Please sign in to comment.