Skip to content

A demonstration of using FIO in a store checkout experience.

License

Notifications You must be signed in to change notification settings

pawmmm/fioserver

 
 

Repository files navigation

fiostore

Very simple http API for sending FIO requests.

  • Listens on port 8080
  • Endpoint is /v1/send_request
  • Options are set via ENV vars:
    • PRIV_KEY wif key for sending requests
    • NODEOS what api to use for sending requests
    • TOKENS comma seperated list of authentication tokens
    • FIO_ADDRESS the sender's FIO address
    • TRUST_XFF (any non-empty value) should the X-Forwarded-For request header be used for logging the IP?

example:

 $ curl -s localhost:8080/v1/send_request -d '{
     "fio_address": "bp0-east@dapixbp",
     "payee": "1LhFko2n6pDHkrw2uJQyrYdBkq8z2tEYmy",
     "chain_code": "BTC",
     "token_code": "BTC",
     "amount": 0.001,
     "memo": "invoice for cool t-shirt",
     "access_token": "your_authentication_token_code_here"
   }' | jq .
   {
     "sent": true,
     "code": 200,
     "message": "success",
     "txid": "b3388eb1d1494be32b32462155a9c97241d73a0935abb00d3ffc6dd7d3bc3afa"
   }

Note: the amount field expects a float

About

A demonstration of using FIO in a store checkout experience.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 96.2%
  • Dockerfile 3.8%