Skip to content

Commit

Permalink
Merge pull request #25 from dragonchain/master
Browse files Browse the repository at this point in the history
Release 4.3.2
  • Loading branch information
cheeseandcereal authored Mar 19, 2020
2 parents 6d97411 + 4f341af commit 6d410f1
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 120 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 4.3.2

- **Bug Fix:**
- Fix type for Dragonchain L1 Transaction Payloads
- **Development:**
- Update dependencies

## 4.3.1

- **Bug Fix:**
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dragonchain-sdk",
"version": "4.3.1",
"version": "4.3.2",
"description": "Dragonchain SDK for Node.JS and the Browser",
"license": "Apache-2.0",
"homepage": "https://github.com/dragonchain/dragonchain-sdk-javascript#readme",
Expand Down Expand Up @@ -80,25 +80,25 @@
"tslib": "^1.11.1"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/chai": "^4.2.11",
"@types/ini": "^1.3.30",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.0",
"@types/node": "^13.9.2",
"@types/node-fetch": "^2.5.5",
"@types/sinon": "^7.5.2",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"mocha": "^7.1.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"sinon": "^9.0.1",
"sinon-chai": "^3.5.0",
"ts-node": "^8.6.2",
"typedoc": "^0.16.11",
"ts-node": "^8.7.0",
"typedoc": "^0.17.1",
"typescript": "^3.8.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ export interface L1DragonchainTransactionFull {
invoker: string;
};
/**
* String of payload data for this transaction
* Payload data for this transaction
*/
payload: string;
payload: any;
proof: {
/**
* hash of the full transaction
Expand Down
Loading

0 comments on commit 6d410f1

Please sign in to comment.