Buat akun atau login ke dashboard.
Pilih validator software, tentukan durasi sewa (1-100 hari), hitung total harga secara otomatis.
Input HWID perangkat Anda, pilih metode bayar (BTC/USDT/Bank), upload bukti transfer.
Approve dalam 1-24 jam. Terima license key + file download via dashboard.
Download tool CLI resmi kami untuk HWID dengan cepat
Download CLI Tool untuk HWIDpip install -r requirements.txtJalankan script untuk generate HWID. Copy hasilnya ke form rental.
# hwid.py - Official Oryza HWID Tool
import uuid
import os
ROOT_DIR = os.path.abspath(os.getcwd())
def save_hwid(hwid):
try:
with open(os.path.join(ROOT_DIR, "hwid.txt"), "w") as f:
f.write(f"Your HWID: {hwid}\nPlease send this HWID to t.me/garudasmith to order a license.\n")
print(f"[SUCCESS] HWID saved successfully to {os.path.join(ROOT_DIR, 'hwid.txt')}.")
return True
except Exception as e:
print(f"[ERROR] Failed to save HWID: {e}")
return False
def main():
hwid = str(uuid.getnode())
print(f"[INFO] Your HWID: {hwid}")
if save_hwid(hwid):
print(f"[INFO] hwid.txt file has been created in directory: {ROOT_DIR}")
else:
print("[ERROR] Save process failed. Check directory access permissions.")
if __name__ == "__main__":
main()
Requirements.txt: psutil==5.9.0 (install via pip).