Skip to content

Commit dd5192c

Browse files
committed
Merge branch 'main' of github.com:XRPLF/xrpl.js into lending-protocol-xls-66d
2 parents 32c25a0 + c8fc356 commit dd5192c

File tree

22 files changed

+1864
-545
lines changed

22 files changed

+1864
-545
lines changed

.ci-config/rippled.cfg

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ online_delete=256
101101
# Devnet amendments as of June 28th, 2023
102102
NegativeUNL
103103
fixRemoveNFTokenAutoTrustLine
104-
NonFungibleTokensV1
105104
CheckCashMakesTrustLine
106105
fixRmSmallIncreasedQOffers
107106
fixSTAmountCanonicalize
@@ -144,10 +143,8 @@ fix1512
144143
fix1373
145144
MultiSign
146145
Checks
147-
NonFungibleTokensV1_1
148146
# 1.10.0 Amendments
149147
DisallowIncoming
150-
fixNonFungibleTokensV1_2
151148
fixTrustLinesToSelf
152149
fixUniversalNumber
153150
ImmediateOfferKilled
@@ -158,7 +155,6 @@ ExpandedSignerList
158155
AMM
159156
Clawback
160157
fixReducedOffersV1
161-
fixNFTokenRemint
162158
# 2.0.0 Amendments
163159
XChainBridge
164160
DID
@@ -188,7 +184,6 @@ PermissionedDomains
188184
fixFrozenLPTokenTransfer
189185
fixInvalidTxFlags
190186
# 2.5.0 Amendments
191-
PermissionDelegation
192187
Batch
193188
PermissionedDEX
194189
TokenEscrow

.github/workflows/release.yml

Lines changed: 164 additions & 134 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ You are also welcome to create an [issue](https://github.com/XRPLF/xrpl.js/issue
111111

112112
- [xrpl.js Reference Docs](https://js.xrpl.org/)
113113
- [xrpl.org (Detailed docs on how the XRPL works)](https://xrpl.org/references.html)
114-
- [XRPL Code Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples)
114+
- [XRPL Code Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples)
115115
- [#javascript in the XRPL Developer Discord for questions & support](https://xrpldevs.org)
116116
- [xrpl-announce (The mailing list for new xrpl.js versions)](https://groups.google.com/g/xrpl-announce)
117117
- [Applications that use xrpl.js](https://github.com/XRPLF/xrpl.js/blob/main/APPLICATIONS.md) (You can open a PR to add your project!)

UNIQUE_SETUPS.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -56,26 +56,3 @@ import './polyfills'
5656
### Using xrpl.js with Vite React
5757

5858
Starting in 3.0 xrpl and all the packages in this repo no longer require custom configurations (ex. polyfills) to run.
59-
60-
### Using xrpl.js with Deno
61-
62-
Until official support for [Deno](https://deno.land) is added, you can use the following work-around to use `xrpl.js` with Deno:
63-
64-
> [!NOTE]
65-
> The following is currently broken due to https://github.com/denoland/deno/issues/20516.
66-
> Once that is fixed there could be other issues as well.
67-
68-
```javascript
69-
import xrpl from 'https://dev.jspm.io/npm:xrpl';
70-
71-
(async () => {
72-
const api = new (xrpl as any).Client('wss://s.altnet.rippletest.net:51233');
73-
const address = 'rH8NxV12EuV...khfJ5uw9kT';
74-
75-
api.connect().then(() => {
76-
api.getBalances(address).then((balances: any) => {
77-
console.log(JSON.stringify(balances, null, 2));
78-
});
79-
});
80-
})();
81-
```

0 commit comments

Comments
 (0)