ripple-binary-codec 1.7.1 → 1.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2338,6 +2338,7 @@
2338
2338
  "NFTokenCreateOffer": 27,
2339
2339
  "NFTokenCancelOffer": 28,
2340
2340
  "NFTokenAcceptOffer": 29,
2341
+ "Clawback": 30,
2341
2342
  "EnableAmendment": 100,
2342
2343
  "SetFee": 101,
2343
2344
  "UNLModify": 102
@@ -2343,6 +2343,7 @@
2343
2343
  "NFTokenCreateOffer": 27,
2344
2344
  "NFTokenCancelOffer": 28,
2345
2345
  "NFTokenAcceptOffer": 29,
2346
+ "Clawback": 30,
2346
2347
  "EnableAmendment": 100,
2347
2348
  "SetFee": 101,
2348
2349
  "UNLModify": 102
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ripple-binary-codec",
3
- "version": "1.7.1",
3
+ "version": "1.8.0",
4
4
  "description": "XRP Ledger binary codec",
5
5
  "files": [
6
6
  "dist/*",
@@ -40,5 +40,5 @@
40
40
  "engines": {
41
41
  "node": ">= 10"
42
42
  },
43
- "gitHead": "5ec6729c614f6f25328f939c9a039a9fdfb6e9b1"
43
+ "gitHead": "002ec77218440b49eaea13e407aaca450ac29f2e"
44
44
  }
@@ -21,7 +21,7 @@ describe('encode and decode using new types as a parameter', function () {
21
21
  // Normally this would be generated directly from rippled with something like `server_definitions`.
22
22
  // Added here to make it easier to see what is actually changing in the definitions.json file.
23
23
  const definitions = JSON.parse(JSON.stringify(normalDefinitionsJson))
24
- definitions.TRANSACTION_TYPES['NewTestTransaction'] = 30
24
+ definitions.TRANSACTION_TYPES['NewTestTransaction'] = 75
25
25
 
26
26
  const newDefs = new XrplDefinitions(definitions)
27
27