Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pjt3591oo/metamask-publish-mobile


https://github.com/pjt3591oo/metamask-publish-mobile

javascript react-native wallet

Last synced: about 7 hours ago
JSON representation

Awesome Lists containing this project

README

        

# metamask clone

wallet of ethereum

## storage model

* wallet

```json
{
"wallet": [
{
"address": "0x00000...",
"privateKey": "adfasdasd123..."
}, {
"address": "0x00000...",
"privateKey": "adfasdasd123..."
}
]
}
```

* history

```json
{
"history": {
"0x001": [
{"from": "", "to": "", "value": "", "txHash": "", "fee": ""},
{"from": "", "to": "", "value": "", "txHash": "", "fee": ""}
],
"0x002": [
{"from": "", "to": "", "value": "", "txHash": "", "fee": ""},
{"from": "", "to": "", "value": "", "txHash": "", "fee": ""}
],
"0x003": [
{"from": "", "to": "", "value": "", "txHash": "", "fee": ""},
{"from": "", "to": "", "value": "", "txHash": "", "fee": ""}
]
}
}
```

* seed

```json
{
"seed": "2e03d11a9c66d815510e471a8e5aa083604baee6c26779e16c72bfb79cc9a1d9592d84a1f2f1c4ed9c2939b683538b42f9a71b5bcd4e99ec97bf0755f1f67f0b",
"index": 0
}
```