Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
Add default to each networks
Browse files Browse the repository at this point in the history
  • Loading branch information
foxytanuki committed Dec 26, 2023
1 parent 9043572 commit 14f6e46
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions proto/mycel/registry/network_name.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ enum NetworkName {
// BTC 1xxx
BITCOIN_MAINNET_MAINNET = 10000;
BITCOIN_TESTNET_TESTNET = 10001;
// DEFAULT
BITCOIN_MAINNET_DEFAULT = 19998;
BITCOIN_TESTNET_DEFAULT = 19999;


// EVM 2xxxx
// Etheruem
Expand Down Expand Up @@ -42,6 +46,9 @@ enum NetworkName {
// Zetachain
// ZETA_MAINNET_MAINNET = 20018;
ZETA_TESTNET_ATHENS = 20019;
// DEFAULT
EVM_MAINNET_DEFAULT = 29998;
EVM_TESTNET_DEFAULT = 29999;

// MOVE 3xxxx
//Aptos
Expand All @@ -50,8 +57,15 @@ enum NetworkName {
// Sui
SUI_MAINNET_MAINNET = 30002;
SUI_TESTNET_TESTNET = 30003;
// DEFAULT
MOVE_MAINNET_DEFAULT = 39998;
MOVE_TESTNET_DEFAULT = 39999;

// SOLANA 4xxxx
SOLANA_MAINNET_MAINNET = 40000;
SOLANA_TESTNET_TESTNET = 40001;
// DEFAULT
SOLANA_MAINNET_DEFAULT = 49998;
SOLANA_TESTNET_DEFAULT = 49999;

}

0 comments on commit 14f6e46

Please sign in to comment.