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: updated networks #210

Merged
merged 3 commits into from
May 21, 2024
Merged
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
Binary file added public/images/network/andromeda.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/network/ixo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/network/rarimo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/network/tenet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/network/xion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ const mappings: Record<string, string> = {
"archway-network": "archway",
"band-protocol": "band",
"crypto-org": "crypto.org",
"mars-protocol": "mars",
};

const NetworkInfo = ({ post }: any) => {
Expand Down
51 changes: 37 additions & 14 deletions src/utils/network_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ const networks = {
label: "Akash - AKT",
name: "Akash",
},
"andromeda": {
denom: "ANDR",
graphql: "andromeda",
image: "/images/network/andromeda.png",
key: "andromeda",
label: "Andromeda - ANDR",
name: "Andromeda",
},
"archway": {
address: "archwayvaloper1esg4kluvdkfcxl0atcf2us2p9m9y9sjjsu04ex",
denom: "ARCH",
Expand Down Expand Up @@ -489,6 +497,14 @@ const networks = {
key: "radix",
name: "Radix",
},
"rarimo": {
denom: "RMO",
graphql: "rarimo",
image: "/images/network/rarimo.png",
key: "rarimo",
label: "Rarimo - RMO",
name: "Rarimo",
},
"router-protocol": {
denom: "Route",
graphql: "router-protocol",
Expand Down Expand Up @@ -585,6 +601,14 @@ const networks = {
label: "Sui - SUI",
name: "Sui",
},
"tenet": {
denom: "TENET",
graphql: "tenet",
image: "/images/network/tenet.png",
key: "tenet",
label: "Tenet - TENET",
name: "Tenet",
},
"terra": {
denom: "LUNA",
graphql: "terra",
Expand Down Expand Up @@ -617,13 +641,21 @@ const networks = {
key: "vsys",
name: "V Systems",
},

"wormhole": {
graphql: "wormhole",
image: "/images/network/wormhole.png",
key: "wormhole",
name: "Wormhole",
},

"xion": {
denom: "XION",
graphql: "xion",
image: "/images/network/xion.png",
key: "xion",
label: "Xion - XION",
name: "Xion",
},
"xpla": {
denom: "XPLA",
graphql: "xpla",
Expand All @@ -643,7 +675,6 @@ const cosmosTestNetworkKeys = ENABLE_TESTNETS
? ([
"celestia-testnet",
"cosmos-testnet",
"kava-testnet",
"stargaze-testnet",
] satisfies NetworkKey[])
: [];
Expand All @@ -653,50 +684,42 @@ const solanaTestNetworkKeys = ENABLE_TESTNETS
: [];

export const cosmosNetworkKeys = [
"agoric",
"andromeda",
"akash",
"archway",
"assetmantle",
"axelar",
"band",
"bitsong",
"celer",
"celestia",
"cheqd",
"composable-finance",
"coreum",
"cosmos",
"crypto.org",
"dydx",
"dymension",
"gitopia",
"humansai",
"injective",
"islamic_coin",
"jackal",
"kava",
"kyve",
"likecoin",
"neutron",
"nois",
"nolus",
"nomic",
"nym",
"omniflix",
"osmosis",
"passage",
"picasso",
"rarimo",
"quasar",
"quicksilver",
"router-protocol",
"sentinel",
"ssv",
"stargaze",
"stride",
"tenet",
"ununifi",
"vsys",
"wormhole",
"xpla",
"xion",

...cosmosTestNetworkKeys,
...solanaTestNetworkKeys,
Expand Down
Loading