Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(chains): add Amoy testnet chain ID in static chain data #2006

Merged
merged 3 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
refactor proto
  • Loading branch information
lumtis committed Apr 12, 2024
commit 7f596928a402b5ca72c15c8730e48eea18a4d503
6 changes: 0 additions & 6 deletions docs/openapi/openapi.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53521,12 +53521,6 @@ definitions:
- btc_regtest
- amoy_testnet
default: empty
title: |-
- goerli_testnet: Testnet
- goerli_localnet: LocalNet
zeta_localnet = 13;
- amoy_testnet: Athens
zeta_athensnet=15;
chainsReceiveStatus:
type: string
enum:
Expand Down
7 changes: 1 addition & 6 deletions pkg/chains/chains.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions proto/pkg/chains/chains.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ enum ChainName {
btc_mainnet = 3;
polygon_mainnet = 4;
bsc_mainnet = 5;
// Testnet
goerli_testnet = 6;
mumbai_testnet = 7;
ganache_testnet = 8;
Expand All @@ -30,12 +29,8 @@ enum ChainName {
zeta_testnet = 11;
btc_testnet = 12;
sepolia_testnet = 13;
// LocalNet
// zeta_localnet = 13;
goerli_localnet = 14;
btc_regtest = 15;
// Athens
// zeta_athensnet=15;
amoy_testnet = 16;
}

Expand Down
8 changes: 0 additions & 8 deletions typescript/pkg/chains/chains_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ export declare enum ChainName {
bsc_mainnet = 5,

/**
* Testnet
*
* @generated from enum value: goerli_testnet = 6;
*/
goerli_testnet = 6,
Expand Down Expand Up @@ -105,9 +103,6 @@ export declare enum ChainName {
sepolia_testnet = 13,

/**
* LocalNet
* zeta_localnet = 13;
*
* @generated from enum value: goerli_localnet = 14;
*/
goerli_localnet = 14,
Expand All @@ -118,9 +113,6 @@ export declare enum ChainName {
btc_regtest = 15,

/**
* Athens
* zeta_athensnet=15;
*
* @generated from enum value: amoy_testnet = 16;
*/
amoy_testnet = 16,
Expand Down
Loading