Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support ilp over http #22

Merged
merged 24 commits into from
Feb 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
data

# Logs
logs
*.log
Expand Down
25 changes: 21 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,25 @@ plugin-virtual instances when a client connects.
```sh
$ ssh root@amundsen.michielbdejong.com # Ask Michiel, Evan, Dennis, Ben, or Stefan for access in https://gitter.im/interledger/testnet-of-testnets
>$ history # Always a good idea when ssh-ing into a server you which didn't configure yourself! :)
>$ cd amundsen
>$ docker build --tag amundsen .
>$ docker run -it -v /root/amundsen/src:/app/src -v /root/ilp-node/letsencrypt:/root/letsencrypt --net=host amundsen /bin/bash
>>$ npm start
>$ screen -rd amundsen # Amundsen didn't want to stay up under pm2 for some reason so now it's running in a screen
```

## Ways to interact with Amundsen

Amundsen can perform several tricks, and each of them can be accessed via one of more of its API interfaces:


Task | 17Q2 | 17Q3-BTP | 17Q3-ETH | 17Q3-XRP | 17Q4-BTP | 17Q4-ETH | 17Q4-XRP | 18Q1-BTP | 18Q1-HEAD | 18Q1-OER |
-------------------------------------------------------|------|----------|----------|----------|----------|----------|----------|----------|-----------|----------|
Send a payment with fixed destination amount | YES | YES | YES | YES | YES | YES | YES | | | |
Send a payment with best-effort destination amount | | YES | YES | YES | YES | YES | YES | YES | YES | YES |
Get a quote for a payment (ILQP) | YES | YES | | | YES | | | | | |
Vouch for an on-ledger address | | YES | | | YES | | | | | |
Announce a ledger prefix | YES | YES | | | YES | | | | | |
Get your account's ILP address | | YES | | | YES | | | YES | YES | YES |
Get your account's current balance | | YES | | | YES | | | YES | YES | YES |
Get your account's unit of value | | YES | | | YES | | | | | |
Get your account's min balance | | | | | | | | | | |
Get your account's max balance | YES | | | | | | | | | |
Get API end-point information | YES | | | | | | | | | |

Loading