Global fees API
The fees endpoint returns aggregate costs for one Solana mint. Configure its complete URL privately; examples never contain the service host or port.
FEES_URL=https://fees.example.com/global-feesRun the checked-in client:
python3 examples/fees/global_fees.py \
So11111111111111111111111111111111111111112The client appends the mint query parameter safely, enforces a timeout, avoids
printing the configured endpoint on failure, and validates these integer fields:
totaltransaction_fees, split intobase_feesandpriority_feestipstrading_feestx_countandsuccess_count
During a strict documentation build the same call is made against the privately configured service. The build checks that totals are non-negative and that the successful transaction count cannot exceed the total transaction count.