-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(website): update setting up wallet docs (#14227)
Co-authored-by: d1onys1us <[email protected]>
- Loading branch information
Showing
9 changed files
with
163 additions
and
63 deletions.
There are no files selected for viewing
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { AddTokenParameter } from "../baseTypes"; | ||
import { ELDFELL_CONFIG } from "./config"; | ||
|
||
export const ELDFELL_ADD_TTKO: AddTokenParameter = { | ||
address: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedTaikoToken.address.impl, | ||
symbol: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedTaikoToken.symbol, | ||
decimals: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedTaikoToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/ttko.svg" | ||
}; | ||
|
||
export const ELDFELL_ADD_BLL: AddTokenParameter = { | ||
address: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.address.impl, | ||
symbol: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.symbol, | ||
decimals: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/bull.svg" | ||
}; | ||
|
||
export const ELDFELL_ADD_HORSE: AddTokenParameter = { | ||
address: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedHorseToken.address.impl, | ||
symbol: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedHorseToken.symbol, | ||
decimals: ELDFELL_CONFIG.rollupContracts.erc20Contracts.bridgedHorseToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/horse.svg" | ||
}; | ||
|
||
export const ELDFELL_ADD_TOKENS = [ | ||
ELDFELL_ADD_TTKO, | ||
ELDFELL_ADD_BLL, | ||
ELDFELL_ADD_HORSE | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { AddTokenParameter } from "../baseTypes"; | ||
import { GRIMSVOTN_CONFIG } from "./config"; | ||
|
||
export const GRIMSVOTN_ADD_TTKO: AddTokenParameter = { | ||
address: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedTaikoToken.address.impl, | ||
symbol: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedTaikoToken.symbol, | ||
decimals: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedTaikoToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/ttko.svg" | ||
}; | ||
|
||
export const GRIMSVOTN_ADD_TTKOE: AddTokenParameter = { | ||
address: GRIMSVOTN_CONFIG.basedContracts.erc20Contracts.taikoToken.address.proxy, | ||
symbol: GRIMSVOTN_CONFIG.basedContracts.erc20Contracts.taikoToken.symbol, | ||
decimals: GRIMSVOTN_CONFIG.basedContracts.erc20Contracts.taikoToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/ttko.svg" | ||
}; | ||
|
||
export const GRIMSVOTN_ADD_BLL: AddTokenParameter = { | ||
address: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.address.impl, | ||
symbol: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.symbol, | ||
decimals: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedBullToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/bull.svg" | ||
}; | ||
|
||
export const GRIMSVOTN_ADD_HORSE: AddTokenParameter = { | ||
address: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedHorseToken.address.impl, | ||
symbol: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedHorseToken.symbol, | ||
decimals: GRIMSVOTN_CONFIG.rollupContracts.erc20Contracts.bridgedHorseToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/horse.svg" | ||
}; | ||
|
||
export const GRIMSVOTN_ADD_TOKENS = [ | ||
GRIMSVOTN_ADD_TTKO, | ||
GRIMSVOTN_ADD_TTKOE, | ||
GRIMSVOTN_ADD_BLL, | ||
GRIMSVOTN_ADD_HORSE | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { AddTokenParameter } from "../baseTypes"; | ||
import { SEPOLIA_CONFIG } from "./config"; | ||
|
||
export const SEPOLIA_ADD_TTKO: AddTokenParameter = { | ||
address: SEPOLIA_CONFIG.basedContracts.erc20Contracts.taikoToken.address.proxy, | ||
symbol: SEPOLIA_CONFIG.basedContracts.erc20Contracts.taikoToken.symbol, | ||
decimals: SEPOLIA_CONFIG.basedContracts.erc20Contracts.taikoToken.decimals, | ||
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, | ||
symbol: SEPOLIA_CONFIG.basedContracts.erc20Contracts.horseToken.symbol, | ||
decimals: SEPOLIA_CONFIG.basedContracts.erc20Contracts.horseToken.decimals, | ||
image: "https://raw.githubusercontent.com/taikoxyz/taiko-mono/main/packages/branding/testnet-token-images/horse.svg" | ||
}; | ||
|
||
export const SEPOLIA_ADD_TOKENS = [ | ||
SEPOLIA_ADD_TTKO, | ||
SEPOLIA_ADD_BLL, | ||
SEPOLIA_ADD_HORSE | ||
] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters