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

add ggezchain to keplr wallet extension #1287

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
74 changes: 74 additions & 0 deletions apps/extension/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2916,6 +2916,80 @@ export const EmbedChainInfos: (ChainInfo | ModularChainInfo)[] = [
],
features: [],
},
{
chainId: "ggezchain",
chainName: "GGEZ1 Chain",
chainSymbolImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/chain.png",
rpc: "https://bc.ggez.one:8443",
rest: "https://rest.ggez.one",
nodeProvider: {
name: "GGEZ1 Foundation DAO LLC.",
email: "[email protected]",
website: "https://ggez.one",
},
bip44: {
coinType: 118,
},
bech32Config: {
bech32PrefixAccAddr: "ggez",
bech32PrefixAccPub: "ggezpub",
bech32PrefixValAddr: "ggezvaloper",
bech32PrefixValPub: "ggezvaloperpub",
bech32PrefixConsAddr: "ggezvalcons",
bech32PrefixConsPub: "ggezvalconspub",
},
currencies: [
{
coinDenom: "GGEZ1",
coinMinimalDenom: "uggez1",
coinDecimals: 6,
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggez1.png",
},
{
coinDenom: "GGZ",
coinMinimalDenom: "uggz",
coinDecimals: 6,
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggz.png",
},
],
feeCurrencies: [
{
coinDenom: "GGEZ1",
coinMinimalDenom: "uggez1",
coinDecimals: 6,
gasPriceStep: {
low: 0.4,
average: 0.5,
high: 0.75,
},
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggez1.png",
},
{
coinDenom: "GGZ",
coinMinimalDenom: "uggz",
coinDecimals: 6,
gasPriceStep: {
low: 0.5,
average: 0.75,
high: 1,
},
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggz.png",
},
],
stakeCurrency: {
coinDenom: "GGEZ1",
coinMinimalDenom: "uggez1",
coinDecimals: 6,
coinImageUrl:
"https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggez1.png",
},
features: ["cosmwasm"],
},
];

// The origins that are able to pass any permission that external webpages can have.
Expand Down
74 changes: 74 additions & 0 deletions apps/mobile/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2141,6 +2141,80 @@ export const EmbedChainInfos: ChainInfo[] = [
],
features: [],
},
{
chainId: 'ggezchain',
chainName: 'GGEZ1 Chain',
chainSymbolImageUrl:
'https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/chain.png',
rpc: 'https://bc.ggez.one:8443',
rest: 'https://rest.ggez.one',
nodeProvider: {
name: 'GGEZ1 Foundation DAO LLC.',
email: '[email protected]',
website: 'https://ggez.one',
},
bip44: {
coinType: 118,
},
bech32Config: {
bech32PrefixAccAddr: 'ggez',
bech32PrefixAccPub: 'ggezpub',
bech32PrefixValAddr: 'ggezvaloper',
bech32PrefixValPub: 'ggezvaloperpub',
bech32PrefixConsAddr: 'ggezvalcons',
bech32PrefixConsPub: 'ggezvalconspub',
},
currencies: [
{
coinDenom: 'GGEZ1',
coinMinimalDenom: 'uggez1',
coinDecimals: 6,
coinImageUrl:
'https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggez1.png',
},
{
coinDenom: 'GGZ',
coinMinimalDenom: 'uggz',
coinDecimals: 6,
coinImageUrl:
'https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggz.png',
},
],
feeCurrencies: [
{
coinDenom: 'GGEZ1',
coinMinimalDenom: 'uggez1',
coinDecimals: 6,
gasPriceStep: {
low: 0.4,
average: 0.5,
high: 0.75,
},
coinImageUrl:
'https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggez1.png',
},
{
coinDenom: 'GGZ',
coinMinimalDenom: 'uggz',
coinDecimals: 6,
gasPriceStep: {
low: 0.5,
average: 0.75,
high: 1,
},
coinImageUrl:
'https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggz.png',
},
],
stakeCurrency: {
coinDenom: 'GGEZ1',
coinMinimalDenom: 'uggez1',
coinDecimals: 6,
coinImageUrl:
'https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ggezchain/ggez1.png',
},
features: ['cosmwasm'],
},
];

// TODO: 원격으로 변경할 수 있도록 나중에 네트워크에서 이 정보를 가져오는 방식으로 변경될 수 있음
Expand Down