Last active
June 10, 2021 16:03
-
-
Save grayfallstown/8530acb84eb131d3dae074e4be23badb to your computer and use it in GitHub Desktop.
plot.ps1
This file contains hidden or 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
# drive letters | |
$temp1 = "c:\PlotTemp" | |
$temp2 = "c:\PlotTemp" | |
$final = "p:\Plots" | |
$username = "test" | |
$chiaversion = "1.1.5" | |
# Find these value by running | |
# C:\Users\ <your username here> \AppData\Local\chia-blockchain\app-1.1.5\resources\app.asar.unpacked\daemon\chia.exe keys show | |
# in your powershell. | |
$publickey = "ac8e049..." | |
$fingerprint = "341...." | |
$host.ui.RawUI.WindowTitle = "plotting $temp1-$temp2-$final" | |
$BUFFER=3416 | |
$THREADS=4 | |
$BUCKETS=128 | |
& "C:\Users\$username\AppData\Local\chia-blockchain\app-$chiaversion\resources\app.asar.unpacked\daemon\chia.exe" plots create --tmp_dir "$temp1" --tmp2_dir "$temp2" --final_dir "$final" --size 32 --buffer $BUFFER --num_threads $THREADS --buckets $BUCKETS --alt_fingerprint $fingerprint --pool_public_key $publickey 2>&1 | % ToString | Tee-Object -FilePath "C:\Users\$username\.chia\mainnet\plotter\$([GUID]::NewGUID().ToString('D')).log" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@itongx what do they look like?