Merge network addition PRs (#516)

* add Bitcichain network (44'/60')

* Rename Astar EVM (custom)

* Remove unnecessary nano icons for Bitcichain

* Add Core network (44'/60')

* Udpate Scroll network ticker and add Stax icons (44'/60')

* Add Bitrock network (44'/60')

* Add Numbers network (44'/60')

* Add Linea network (44'/60')

* rename Bitrock stax glyph file

* resolves too many colors error on Bitrock Stax glyph
This commit is contained in:
Victor Forgeoux
2024-01-05 11:52:00 +01:00
committed by GitHub
parent 8faae998af
commit 9475112d45
10 changed files with 9 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 718 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 706 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 725 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 701 B

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 701 B

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 414 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 763 B

View File

@@ -1,4 +1,4 @@
APP_LOAD_PARAMS += --path "44'/810'" --path "44'/60'" APP_LOAD_PARAMS += --path "44'/810'" --path "44'/60'"
TICKER = "ASTR" TICKER = "ASTR"
CHAIN_ID = 592 CHAIN_ID = 592
APPNAME = "Astar EVM" APPNAME = "Astar Polkadot EVM"

View File

@@ -53,9 +53,9 @@ static const network_info_t NETWORK_MAPPING[] = {
{.chain_id = 19, .name = "Songbird", .ticker = "SGB"}, {.chain_id = 19, .name = "Songbird", .ticker = "SGB"},
{.chain_id = 73799, .name = "Volta", .ticker = "VOLTA"}, {.chain_id = 73799, .name = "Volta", .ticker = "VOLTA"},
{.chain_id = 25, .name = "Cronos", .ticker = "CRO"}, {.chain_id = 25, .name = "Cronos", .ticker = "CRO"},
{.chain_id = 534354, .name = "Scroll (Pre-Alpha)", .ticker = "SCR"}, {.chain_id = 534353, .name = "Scroll Alpha", .ticker = "ETH"},
{.chain_id = 534353, .name = "Scroll (Goerli)", .ticker = "SCR"}, {.chain_id = 534351, .name = "Scroll Sepolia", .ticker = "ETH"},
{.chain_id = 534352, .name = "Scroll", .ticker = "SCR"}, {.chain_id = 534352, .name = "Scroll", .ticker = "ETH"},
{.chain_id = 321, .name = "KCC", .ticker = "KCS"}, {.chain_id = 321, .name = "KCC", .ticker = "KCS"},
{.chain_id = 30, .name = "Rootstock", .ticker = "RBTC"}, {.chain_id = 30, .name = "Rootstock", .ticker = "RBTC"},
{.chain_id = 9001, .name = "Evmos", .ticker = "EVMOS"}, {.chain_id = 9001, .name = "Evmos", .ticker = "EVMOS"},
@@ -76,6 +76,11 @@ static const network_info_t NETWORK_MAPPING[] = {
{.chain_id = 1101, .name = "Polygon zkEVM", .ticker = "ETH"}, {.chain_id = 1101, .name = "Polygon zkEVM", .ticker = "ETH"},
{.chain_id = 8453, .name = "Base", .ticker = "ETH"}, {.chain_id = 8453, .name = "Base", .ticker = "ETH"},
{.chain_id = 58008, .name = "Sepolia", .ticker = "ETH"}, {.chain_id = 58008, .name = "Sepolia", .ticker = "ETH"},
{.chain_id = 1907, .name = "Bitcichain", .ticker = "BITCI"},
{.chain_id = 1116, .name = "Core", .ticker = "CORE"},
{.chain_id = 7171, .name = "Bitrock Mainnet", .ticker = "BROCK"},
{.chain_id = 10507, .name = "Numbers Protocol", .ticker = "NUM"},
{.chain_id = 59144, .name = "Linea", .ticker = "ETH"},
}; };
static const network_info_t *get_network_from_chain_id(const uint64_t *chain_id) { static const network_info_t *get_network_from_chain_id(const uint64_t *chain_id) {