-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a6dc02
commit 5bbde4d
Showing
1 changed file
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
import Rigs | ||
|
||
key = Rigs.Key() | ||
key.Generate() | ||
key.Save('Miner') | ||
key = Rigs.Key() # Opens Key | ||
key.Generate() # Generates Public/Private key pair | ||
key.Save('example') # Saves keys and address to folder "example" | ||
# Example Addr: 7ZAJEBDFLr8FYmBqKA8G5L2MMeRiJKPHQJTiircmuRoS | ||
|
||
#key.Genysis(key.address,1000) | ||
key.Genysis(key.address,1000) | ||
|
||
key = Rigs.Key() # Opens Key | ||
key.GenerateStealth() # Generates Stealth address | ||
key.Save('stealth-example') # Saves keys and address to folder "stealth-example" | ||
# Example Stealth Addr: iKx1CJLa5Dp8mYfmcLAHMf7EjxSFhWEpxcLq9wwqTqhFMP9zHggz74ffaXC2Pwcvid3CYJ7xtNU9h89bouR5SZ6ZnoVqVdXHmX | ||
|
||
key = Rigs.Key() # Opens Key | ||
key.Load('example') # Load keys from folder "example" | ||
|
||
key.Send('7ZAJEBDFLr8FYmBqKA8G5L2MMeRiJKPHQJTiircmuRoS',100) # Send transation | ||
key.Send('iKx1CJLa5Dp8mYfmcLAHMf7EjxSFhWEpxcLq9wwqTqhFMP9zHggz74ffaXC2Pwcvid3CYJ7xtNU9h89bouR5SZ6ZnoVqVdXHmX',100) # Send transaction to stealth address |