Have been attempting to make requests of GigaWallet to generate some invoices for the account 'some_hash' via the following:
sudo docker exec -it gigawallet sh -c 'curl -X POST http://localhost:8081/account/some_hash/invoice -H "Content-Type: application/json" -d '\''{
"items": [
{
"name": "Dogecoin Sticker",
"value": "100.00",
"quantity": 1,
"type": "item"
}
],
"required_confirmations": 3
}'\'''
unfortunately this neither returns a failure or the expected response, when I look at the logs there is nothing, and when I request a list of invoices for the account by passing:
curl --request GET --url 'http://localhost:8081/account/some_hash/invoices?limit=2&cursor=0'
GigaWallet returns 'null' as a list of items so I can confirm, sadly no invoice has been generated. 😢