File tree Expand file tree Collapse file tree 2 files changed +1
-24
lines changed
Expand file tree Collapse file tree 2 files changed +1
-24
lines changed Original file line number Diff line number Diff 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!)
Original file line number Diff line number Diff line change @@ -56,26 +56,3 @@ import './polyfills'
5656### Using xrpl.js with Vite React
5757
5858Starting 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- ```
You can’t perform that action at this time.
0 commit comments