You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change the way keys are written down in keystore.json. (#4534)
## Motivation
Currently, the `keystore.json` encode the key as a vector of decimal
values.
Fixes#4489
## Proposal
We simply change the ways that the encoding is done.
We go from
```
{
"keys": [
[
"0x39b7028692e9a61d2e2ad945bf8e83f25cdfc3cbec6470db6f1ad6fbaa1600ca",
[ 128, 67, 34, 67, ..... ]
],
```
to
```
{
"keys": [
[
"0x39b7028692e9a61d2e2ad945bf8e83f25cdfc3cbec6470db6f1ad6fbaa1600ca",
"7b2245643235353139223a2261326332363133343864366266663965303362376633303638643031616563656363326538343864343661316335353761353030653264376530333264326365227d"
],
```
## Test Plan
The CI.
The remote end-to-end test will test this feature.
## Release Plan
This definitely breaks the existing wallets.
## Links
None.
0 commit comments