Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions apps/docs/src/apps/evm.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Supported coins from the evm family are:
7. Ethereum Classic
8. Arbitrum
9. Optimism
10. Base

## 1. Generate Address

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ technologies:
| Coin Family | Coins |
| ----------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Bitcoin | - Bitcoin (Legacy & Native Segwit)<br>- Litecoin<br>- Dogecoin<br>- Dashcoin |
| EVM | - Ethereum<br>- Polygon<br>- Binance<br>- Fantom<br>- Avalanche<br>- Harmony<br>- Ethereum Classic<br>- Arbitrum<br>- Optimism |
| EVM | - Ethereum<br>- Polygon<br>- Binance<br>- Fantom<br>- Avalanche<br>- Harmony<br>- Ethereum Classic<br>- Arbitrum<br>- Optimism<br>- Base |
| Solana | - Solana |
| Near | - Near |
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ technologies:
| Coin Family | Coins | Package |
| ----------- | ------------------------------------------------------------------------------------------- | -------------------------------------------------------- |
| Bitcoin | - Bitcoin (Legacy & Native Segwit)<br>- Litecoin<br>- Dogecoin<br>- Dashcoin | [@cypherock/sdk-app-btc](../cypherock-sdk-app-btc) |
| EVM | - Ethereum<br>- Polygon<br>- Binance<br>- Fantom<br>- Avalanche<br>- Arbitrum<br>- Optimism | [@cypherock/sdk-app-evm](../cypherock-sdk-app-evm) |
| EVM | - Ethereum<br>- Polygon<br>- Binance<br>- Fantom<br>- Avalanche<br>- Arbitrum<br>- Optimism<br>- Base | [@cypherock/sdk-app-evm](../cypherock-sdk-app-evm) |
| Solana | - Solana | [@cypherock/sdk-app-solana](../cypherock-sdk-app-solana) |
| Near | - Near | [@cypherock/sdk-app-near](../cypherock-sdk-app-near) |
1 change: 1 addition & 0 deletions packages/app-evm/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ EVM coin family.
- Avalanche: (ChainId: `43114`)
- Arbitrum: (ChainId: `42161`)
- Optimism: (ChainId: `10`)
- Base: (ChainId: `8453`)

## 2. Usage

Expand Down
2 changes: 2 additions & 0 deletions packages/app-evm/src/constants/appId.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ export const chainToAppIdMap: Record<number, number | undefined> = {
10: 0x0e,
// Arbitrum
42161: 0x11,
// Base
8453: 0x12,
};

export const APP_VERSION = {
Expand Down