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

Feature/price api #27

Merged
merged 18 commits into from
Jul 26, 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is the documentation created by Amadeus' team for dApps to learn how to interact with our API. Below you will find a user guide on how to consume it, but if you have any doubts feel free to contact us at team@amadeusrelay.org.

Take a look on our API on [Amadeus Relay API Docs](https://api.amadeusrelay.org/api-docs/)
Take a look on our API on [Amadeus Relay API Docs](https://kovan.amadeusrelay.org/api-docs/)

### Choosing Strategy

Expand Down Expand Up @@ -51,7 +51,7 @@ import {HttpClient} from '@0xproject/connect';
```
and instantiate a new HttpClient instance with Amadeus Relay url
```
this.httpClient = new HttpClient('https://api.amadeusrelay.org/api/v0');
this.httpClient = new HttpClient('https://kovan.amadeusrelay.org/api/v0');
```

### Reserve Manager
Expand Down
4 changes: 4 additions & 0 deletions config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,9 @@ module.exports = {
// In our experience, they generally work as expected,
// just be aware of this issue when enabling this option.
cssSourceMap: false
},
network: {
url: 'http://localhost:3000/api/v0/',
networkId: 42
}
}
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This is the documentation created by Amadeus' team for dApps to learn how to interact with our API. Below you will find a user guide on how to consume it, but if you have any doubts feel free to contact us at team@amadeusrelay.org.

Take a look on our API on [Amadeus Relay API Docs](https://api.amadeusrelay.org/api-docs/)
Take a look on our API on [Amadeus Relay API Docs](https://kovan.amadeusrelay.org/api-docs/)

### Choosing Strategy

Expand Down Expand Up @@ -51,7 +51,7 @@ import {HttpClient} from '@0xproject/connect';
```
and instantiate a new HttpClient instance with Amadeus Relay url
```
this.httpClient = new HttpClient('https://api.amadeusrelay.org/api/v0');
this.httpClient = new HttpClient('https://kovan.amadeusrelay.org/api/v0');
```

### Reserve Manager
Expand Down Expand Up @@ -452,4 +452,4 @@ Validation error codes:
1006 - Unsupported option
```

Well, that's it. With this guide, you can perfectly interact with Amadeus APIs and have your tokens exchanged in an easy way.
Well, that's it. With this guide, you can perfectly interact with Amadeus APIs and have your tokens exchanged in an easy way.
Loading