Skip to content
Open
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
10 changes: 10 additions & 0 deletions evm/eip155:262144.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"chainId": "eip155:262144",
"chainName": "MPCQ Network",
"rpc": "https://rpc.mpcq.moneypoolscash.com",
"features": ["eth-address-gen", "eth-key-sign"],
"currencies": [{
"coinDenom": "MPCQ",
"coinDecimals": 18
Comment on lines +7 to +8
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Define coinMinimalDenom for MPCQ currency

The only currency object is missing coinMinimalDenom, but downstream validation/normalization treats this field as required (for example checkCurrencies uses currency.coinMinimalDenom to construct DenomHelper in src/validate.ts), so this chain config cannot be validated or reliably consumed by clients. Add a valid minimal denom string and reuse it consistently across related currency fields.

Useful? React with 👍 / 👎.

}]
Comment on lines +6 to +9
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Add required feeCurrencies for this chain entry

This config does not define feeCurrencies, but repository validation and tooling assume the field exists and iterate it unguarded (for example checkCurrencies in src/validate.ts and image checks in src/index.ts), so processing this chain will throw at runtime instead of loading metadata. Please add feeCurrencies (normally including the native gas token) and keep it consistent with currencies.

Useful? React with 👍 / 👎.

}