Quote
Request storage and inspect payment options
Start with the default storage quote and inspect the selected SOL leg plus the available alternatives.
from pynukez import Nukez client = Nukez( keypair_path="~/.config/solana/id.json", # optional local signer path base_url="https://api.nukez.xyz", network="mainnet-beta",) req = client.request_storage(units=1, provider="gcs") print(req.pay_req_id)print(req.pay_to_address)print(req.amount_sol) for option in req.payment_options or []: print(option["pay_asset"], option["network"], option["amount"])
Code notes
The default quote path returns a selected native SOL leg plus the full payment_options list. PyNukez parses those options so your app can display or select a payment rail deliberately.
The gateway should never receive your keypair file. Browser apps, relays, and hardware-backed flows can provide their own signer.
