I need to broadcast NIM transactions on testnet from a small backend (treasury → user payouts at settlement).
My transport is offline-sign + HTTP JSON-RPC: build & sign the tx offline
(TransactionBuilder.newBasic → signTransaction → toHex), then POST sendRawTransaction
to a node. This works perfectly against the public mainnet RPC
nginx 500 (not responding), so I can't broadcast on testnet.
Questions:
1. Is there a healthy/official public testnet (Albatross) JSON-RPC endpoint I can
2. If not, what's the recommended way for a Mini App backend to broadcast testnet
transactions? (I'd prefer not to run a local node — @nimiq/core's Node client
throws on worker init / never reaches consensus in plain Node.)
3. Otherwise, is mainnet with tiny real amounts the intended path for testing
Mini App money flows?
Thanks!