Skip to content

Missing ss58Format field in system_properties for Westend Asset Hub #9278

@moronyoh

Description

@moronyoh

Is there an existing issue?

  • I have searched the existing issues

Experiencing problems? Have you tried our Stack Exchange first?

  • This is not a support question.

Description of bug

Hello !
I'm working at Ledger and we are using polkadot-parachain-node (in version 2503-7) to deploy both westend relay chain & asset hub. It works fine but one of the tool we connected to our nodes call the RPC method: system_properties and it doesn't have the same output for westend asset hub, it miss the ss58Format field. This field is well defined for westend relay chain & aslo polkadot asset hub & relay chain.

Steps to reproduce

I also reproduced in public nodes:

$ curl -s -H 'Content-Type: application/json' -d '{"id":"test","method":"system_properties", "jsonrpc":"2.0"}' https://westend-asset-hub-rpc.polkadot.io | jq .
{
  "jsonrpc": "2.0",
  "id": "test",
  "result": {
    "tokenDecimals": 12,
    "tokenSymbol": "WND"
  }
}
$ curl -s -H 'Content-Type: application/json' -d '{"id":"test","method":"system_properties", "jsonrpc":"2.0"}' https://westend-rpc.polkadot.io | jq .
{
  "jsonrpc": "2.0",
  "id": "test",
  "result": {
    "ss58Format": 42,
    "tokenDecimals": 12,
    "tokenSymbol": "WND"
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    I10-unconfirmedIssue might be valid, but it's not yet known.I2-bugThe node fails to follow expected behavior.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions