Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit 05b04f0

Browse files
author
james
committed
Removed package.json import (simplifies integrety hashing)
1 parent d9e7db3 commit 05b04f0

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ General purpose library for EOSIO blockchains.
99

1010
| [EOSIO/eosjs](/EOSIO/eosjs) | [Npm](https://www.npmjs.com/package/eosjs) | [EOSIO/eos](https://github.com/EOSIO/eos) | [Docker Hub](https://hub.docker.com/r/eosio/eos/) |
1111
| --- | --- | --- | --- |
12-
| tag: 15.0.5 | `npm install eosjs` (version 15) | tag: v1.0.10 | eosio/eos:v1.0.10 |
12+
| tag: 15.0.6 | `npm install eosjs` (version 15) | tag: v1.0.10 | eosio/eos:v1.0.10 |
1313

1414
Release notes:
15-
* [email protected].5 is compatible with eosio v1.0.5 - v1.0.10
15+
* [email protected].6 is compatible with eosio v1.0.5 - v1.0.10
1616
* Converted some types in **format** module from unsigned to signed: UDecimalPad -> DecimalPad for example (15.0.1)
1717
* All `asset` and `extended_asset` amounts require exact decimal places (Change `1 SYS` to `1.0000 SYS`) (15.0.0)
1818
* Use `config.verbose` instead of `config.debug` (14.1.0)
@@ -27,15 +27,15 @@ Prior [version](./docs/prior_versions.md) matrix.
2727

2828
```html
2929
<!--
30-
sha512-ai45284Aqpa8O+wxR7/aevdeGmgYkc2sZ27r+CAaADuu3rusBtZ+syXqhzwDucBsQdNhmLOaae42vSOEdmkiIA== lib/eos.js
31-
sha512-EpymRDmpHwTXG0LT+mQZ10/m1XAsTxj74bZ9uiDJm9CUGmNX+qkrNC/GMU6R/c5ayB0LGBTSUeJDnQYlc58g4w== lib/eos.min.js
32-
sha512-VjGIVy6TjlKenLPbOAf+/TeD5ny96ebeWhDJMfmLtkUuzSVohM79d7vwPbBEtBO5wrr23qKPV1HJK2WbfP6rpg== lib/eos.min.js.map
30+
sha512-4M+2te9VpDRu+8YD2sJtPjUo92WfNcUcD3jzwe5gcyjevGmqBuZpSpN2UbUtiJl1fNOqkJO8VQ2y3rfFatc6ZQ== lib/eos.js
31+
sha512-IDRAIcOGQTZN3jE/TvTiG3czpjzmWPiYi0+mwWbJVdYwPfbhD2YtzlpD4+rKE+MIuysseAenToyLNoO1whNFUg== lib/eos.min.js
32+
sha512-eqTZ81MJdAliK6erbjeUgKF/ShmhUsSo7LL1GX6KRYsYDFVm0kL6eETHVJl6JBITVLXWMJZ6oFfh1wronuTgqA== lib/eos.min.js.map
3333
-->
3434
<html>
3535
<head>
3636
<meta charset="utf-8">
37-
<script src="https://cdn.jsdelivr.net/npm/[email protected].5/lib/eos.min.js"
38-
integrity="sha512-EpymRDmpHwTXG0LT+mQZ10/m1XAsTxj74bZ9uiDJm9CUGmNX+qkrNC/GMU6R/c5ayB0LGBTSUeJDnQYlc58g4w=="
37+
<script src="https://cdn.jsdelivr.net/npm/[email protected].6/lib/eos.min.js"
38+
integrity="sha512-IDRAIcOGQTZN3jE/TvTiG3czpjzmWPiYi0+mwWbJVdYwPfbhD2YtzlpD4+rKE+MIuysseAenToyLNoO1whNFUg=="
3939
crossorigin="anonymous"></script>
4040
<script>
4141
eos = Eos({

src/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const AbiCache = require('./abi-cache')
88
const writeApiGen = require('./write-api')
99
const format = require('./format')
1010
const schema = require('./schema')
11-
const pkg = require('../package.json')
1211

1312
const Eos = (config = {}) => {
1413
config = Object.assign({}, {
@@ -33,7 +32,7 @@ module.exports = Eos
3332
Object.assign(
3433
Eos,
3534
{
36-
version: pkg.version,
35+
version: '15.0.6',
3736
modules: {
3837
format,
3938
api: EosApi,

0 commit comments

Comments
 (0)