Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pjt3591oo/metamask-publish-mobile
- Owner: pjt3591oo
- Created: 2019-08-17T22:50:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-28T13:16:28.000Z (over 1 year ago)
- Last Synced: 2023-03-03T06:15:21.237Z (over 1 year ago)
- Topics: javascript, react-native, wallet
- Language: JavaScript
- Size: 8.03 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
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
}
```