Skip to content

Commit

Permalink
Merge pull request #161 from Cryptonomic/release/023b
Browse files Browse the repository at this point in the history
ran npm package and package-web
  • Loading branch information
umurb committed May 8, 2019
2 parents 84819a0 + a1559fa commit 3f299d2
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion dist-web/conseiljs.min.js

Large diffs are not rendered by default.

22 changes: 14 additions & 8 deletions dist/chain/tezos/TezosLanguageUtil.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/chain/tezos/TezosLanguageUtil.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion dist/types/conseil/ErrorTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export declare class ServiceRequestError extends Error {
httpMessage: string;
conseilURL: string;
data: string | null;
rootCause: Error | null;
constructor(httpStatus: number, httpMessage: string, conseilURL: string, data: string | null);
}
export declare class ConseilRequestError extends ServiceRequestError {
Expand Down
1 change: 0 additions & 1 deletion dist/types/conseil/ErrorTypes.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/types/conseil/ErrorTypes.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ We have a complete [React application example](https://github.com/Cryptonomic/Co
## Use with Web
```html
<script src="https://cdn.jsdelivr.net/gh/cryptonomic/conseiljs/dist-web/conseiljs.min.js"
integrity="sha384-fNmrK/ez+TaHWU7Q4NJqoApMg/PEUAoB+zaQu8zMoFfI24HT4yG1nT4U1cdApmOm"
integrity="sha384-F1uIusMQ+Mgue6aZpOUuFk5OurJ3vDS3zki0oXoEGalXNj3PjP0dgrOQoz10zBrJ"
crossorigin="anonymous"></script>
```

Expand Down Expand Up @@ -369,7 +369,7 @@ async function listAccountTransactions() {
const sendResult = await ConseilDataClient.executeEntityQuery(conseilServer, platform, network, entity, sendQuery);
const receiveResult = await ConseilDataClient.executeEntityQuery(conseilServer, platform, network, entity, receiveQuery);
const transactions = sendResult.concat(receiveResult).sort((a, b) => { return a['timestamp'] - b['timestamp'] });

console.log(`${util.inspect(transactions, false, 2, false)}`);
}

Expand Down

0 comments on commit 3f299d2

Please sign in to comment.