https://github.com/fox-one/mint-withdraw
mixin node mint withdraw
https://github.com/fox-one/mint-withdraw
Last synced: 5 months ago
JSON representation
mixin node mint withdraw
- Host: GitHub
- URL: https://github.com/fox-one/mint-withdraw
- Owner: fox-one
- License: apache-2.0
- Created: 2019-07-10T09:26:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-01-26T07:44:38.000Z (over 1 year ago)
- Last Synced: 2025-08-14T15:29:25.485Z (11 months ago)
- Language: Go
- Size: 326 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mint-withdraw
mixin node mint withdraw
## Generate keys and verfiy raw address
use the command to generate keys of signer and payee
```bash
$ ./verifier keys
```
output:
```
Signer
Address {Signer Address}
PrivateSpendKey {Signer Private Spend Key}
PublicSpendKey {Signer Public Spend Key}
PrivateViewKey {Signer Private View Key}
PublicViewKey {Signer Public View Key}
Payee
Address {Payee Address}
PrivateSpendKey {Payee Private Spend Key}
PublicSpendKey {Payee Public Spend Key}
PrivateViewKey {Payee Private View Key}
PublicViewKey {Payee Public View Key}
keystore
{
"s": "{Signer Private Spend Key}",
"p": "{Payee Private Spend Key}"
}
```
it also generate keystore content(below the "keystore"), save it to `t.json`
then you can use it to verify the rawaddress:
```bash
$ verifier verify -k t.json -raw {Raw Address}
```
if it says "verified", then it matched.