Create, fund, and manage internal ledger accounts.
curl -X POST http://localhost:3004/global-accounts \ -H "x-api-key: $API_KEY" \ -H 'Content-Type: application/json' \ -d '{"currency":"USD"}'
curl http://localhost:3004/global-accounts \ -H "x-api-key: $API_KEY"
curl http://localhost:3004/global-accounts/$ACCOUNT_ID \ -H "x-api-key: $API_KEY"
curl -X POST http://localhost:3004/global-accounts/$ACCOUNT_ID/fund \ -H "x-api-key: $API_KEY" \ -H 'Content-Type: application/json' \ -d '{"amount":"1000","currency":"USD"}'