<aside> <img src="/icons/help-alternate_red.svg" alt="/icons/help-alternate_red.svg" width="40px" /> FAQ
This guide addresses the integration challenges that may arise when chains and respective dApps switch to the universal address format, as proposed in this WFC proposal.
<aside> <img src="/icons/circle-alternate_green.svg" alt="/icons/circle-alternate_green.svg" width="40px" />
This initiative falls under the UX Bounty scope and the necessary resources will be covered by its budget.
</aside>
<aside> <img src="/icons/checkmark_blue.svg" alt="/icons/checkmark_blue.svg" width="40px" />
Use the checklist to not forget anything while upgrading!
</aside>
<aside> <img src="/icons/info-alternate_blue.svg" alt="/icons/info-alternate_blue.svg" width="40px" />
This guide was created to comprehensively address the needs of all teams that may be affected. If your parachain doesn’t have interfaces, some sections may not apply to you.
</aside>
To initiate the change, you need to update a parameter in the runtime configuration of the parachain. Although this is a simple configuration adjustment, it typically requires a runtime upgrade.
The change is essential because dApps and wallets rely on this parameter to correctly display the address format.
This includes Polkadot Vault and Ledger hardware devices. It is also the recommended method for dApps to trigger and communicate the change to users.
impl frame_system::Config for Runtime {
...
--- type SS58Prefix = SS58Prefix;
+++ type SS58Prefix = 0u16;
...
}
<aside> <img src="/icons/warning_yellow.svg" alt="/icons/warning_yellow.svg" width="40px" />
Wallets and dApps are encouraged to use this change to “flip the switch” for parachains that have upgraded from the old address prefix to the new one.
It’s recommended to wait until wallets have implemented the necessary changes before proceeding with this update.
</aside>