Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
harpagon210 authored Jan 21, 2019
1 parent 28c6a3b commit 0d75288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This library requires the [axios library](https://github.com/axios/axios)
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sscjs@latest/dist/ssc.min.js"></script>
<script>
const ssc = new SSC('https://steemsmartcontracts.tk:5000');
const ssc = new SSC('https://testapi.steem-engine.com');
ssc.getLatestBlockInfo((err, result) => {
console.log(err, result);
});
Expand All @@ -53,7 +53,7 @@ This library requires the [axios library](https://github.com/axios/axios)
```javascript
const SSC = require('sscjs');

const ssc = new SSC('https://steemsmartcontracts.tk:5000');
const ssc = new SSC('https://testapi.steem-engine.com');
ssc.stream((err, res) => {
console.log(err, res);
});
Expand Down

0 comments on commit 0d75288

Please sign in to comment.