You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+53-8Lines changed: 53 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,19 +5,49 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
-
## [v0.1.8]
8
+
#[Unreleased]
9
9
10
-
### Added
10
+
##Breaking changes
11
11
12
-
####xrpl
12
+
### xrpl
13
13
14
-
- Added `BalanceChanges` to the `Transaction` type.
14
+
-`Submit` client method is renamed to `SubmitTxBlob` in both clients.
15
+
-`SubmitAndWait` client method is renamed to `SubmitTxBlobAndWait` in both clients.
15
16
16
-
###Changed
17
+
## Changed
17
18
18
-
####xrpl
19
+
### xrpl
19
20
20
-
- Updated `AffectedNode` type fields to be a pointer to allow nil values.
21
+
- Added `SubmitTx` and `SubmitTxAndWait` client methods to both clients.
22
+
23
+
## Added
24
+
25
+
### xrpl
26
+
27
+
- Added support for the Credential fields in the following transaction types:
28
+
- Payment
29
+
- DepositPreauth
30
+
- AccountDelete
31
+
- PaymentChannelClaim
32
+
- EscrowFinish
33
+
- Added the `credential` ledger entry for the `account_objects` request.
34
+
- Added tec/tef/tel/tem/ter TxResult codes.
35
+
- Replaced string declaration with constant/object references.
36
+
- Added `XLS-80d` support with `PermissionedDomain` transaction types:
37
+
-`PermissionedDomainSet`
38
+
-`PermissionedDomainDelete`
39
+
40
+
## Fixed
41
+
42
+
### binary-codec
43
+
44
+
- Added native `uint8` type support for `Uint8` type.
45
+
46
+
### big-decimal
47
+
48
+
- Fixed `BigDecimal` precision.
49
+
50
+
## [v0.1.9]
21
51
22
52
### Added
23
53
@@ -30,8 +60,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
60
31
61
### Fixed
32
62
63
+
#### big-decimal
64
+
65
+
- Amounts transcoding fix for large values.
66
+
67
+
## [v0.1.8]
68
+
69
+
### Added
70
+
33
71
#### xrpl
34
72
73
+
- Added `BalanceChanges` to the `Transaction` type.
74
+
75
+
### Changed
76
+
77
+
#### xrpl
78
+
79
+
- Updated `AffectedNode` type fields to be a pointer to allow nil values.
35
80
- Fixed `BaseLedger` field in `ledger` response (v1 and v2). BaseLedger.Transactions is now an array of interfaces instead of a slice of `FlatTransaction` due to `Expand` field in the request.
36
81
37
82
## [v0.1.7]
@@ -192,7 +237,7 @@ Support for the XLS-77d (deep freeze)
192
237
- New `Multisign` wallet method.
193
238
- Ripple time conversion utility functions.
194
239
- Added query methods for websocket and rpc clients.
195
-
- New `SubmitMultisigned`, `AutofillMultisigned` and `SubmitAndWait` methods for both clients.
240
+
- New `SubmitMultisigned`, `AutofillMultisigned` and `SubmitTxBlobAndWait` methods for both clients.
196
241
- Added `Autofill` method for rpc client.
197
242
- New `MaxRetries` and `RetryDelay` config options for both clients.
The `Submit` method is used to submit a transaction to the XRPL network. It returns a `TxResponse` struct containing the transaction result for the blob submitted. `txBlob` must be signed. There's also a `SubmitMultisigned` method that works the same way but for multisigned transactions.
The `SubmitAndWait` method is used to submit a transaction to the XRPL network and wait for it to be included in a ledger. It returns a `TxResponse` struct containing the transaction result for the blob submitted.
100
+
The `SubmitTxBlobAndWait` method is used to submit a transaction to the XRPL network and wait for it to be included in a ledger. It returns a `TxResponse` struct containing the transaction result for the blob submitted.
The `Submit` method is used to submit a transaction to the XRPL network. It returns a `TxResponse` struct containing the transaction result for the blob submitted. `txBlob` must be signed. There's also a `SubmitMultisigned` method that works the same way but for multisigned transactions.
The `SubmitAndWait` method is used to submit a transaction to the XRPL network and wait for it to be included in a ledger. It returns a `TxResponse` struct containing the transaction result for the blob submitted.
130
+
The `SubmitTxBlobAndWait` method is used to submit a transaction to the XRPL network and wait for it to be included in a ledger. It returns a `TxResponse` struct containing the transaction result for the blob submitted.
0 commit comments