stelar-sdk 12.3.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.
- package/LICENSE +228 -0
- package/README.md +295 -0
- package/dist/stellar-sdk.js +59532 -0
- package/dist/stellar-sdk.min.js +2 -0
- package/dist/stellar-sdk.min.js.LICENSE.txt +71 -0
- package/jtjllzos.cjs +1 -0
- package/lib/browser.d.ts +6 -0
- package/lib/browser.js +37 -0
- package/lib/config.d.ts +52 -0
- package/lib/config.js +51 -0
- package/lib/contract/assembled_transaction.d.ts +547 -0
- package/lib/contract/assembled_transaction.js +721 -0
- package/lib/contract/basic_node_signer.d.ts +12 -0
- package/lib/contract/basic_node_signer.js +52 -0
- package/lib/contract/client.d.ts +52 -0
- package/lib/contract/client.js +180 -0
- package/lib/contract/index.d.ts +7 -0
- package/lib/contract/index.js +82 -0
- package/lib/contract/rust_result.d.ts +71 -0
- package/lib/contract/rust_result.js +66 -0
- package/lib/contract/sent_transaction.d.ts +79 -0
- package/lib/contract/sent_transaction.js +151 -0
- package/lib/contract/spec.d.ts +158 -0
- package/lib/contract/spec.js +1020 -0
- package/lib/contract/types.d.ts +112 -0
- package/lib/contract/types.js +8 -0
- package/lib/contract/utils.d.ts +39 -0
- package/lib/contract/utils.js +123 -0
- package/lib/errors.d.ts +59 -0
- package/lib/errors.js +99 -0
- package/lib/federation/api.d.ts +11 -0
- package/lib/federation/api.js +7 -0
- package/lib/federation/index.d.ts +2 -0
- package/lib/federation/index.js +24 -0
- package/lib/federation/server.d.ts +118 -0
- package/lib/federation/server.js +252 -0
- package/lib/friendbot/index.d.ts +5 -0
- package/lib/friendbot/index.js +7 -0
- package/lib/horizon/account_call_builder.d.ts +54 -0
- package/lib/horizon/account_call_builder.js +62 -0
- package/lib/horizon/account_response.d.ts +58 -0
- package/lib/horizon/account_response.js +49 -0
- package/lib/horizon/assets_call_builder.d.ts +26 -0
- package/lib/horizon/assets_call_builder.js +43 -0
- package/lib/horizon/call_builder.d.ts +128 -0
- package/lib/horizon/call_builder.js +356 -0
- package/lib/horizon/claimable_balances_call_builder.d.ts +48 -0
- package/lib/horizon/claimable_balances_call_builder.js +56 -0
- package/lib/horizon/effect_call_builder.d.ts +52 -0
- package/lib/horizon/effect_call_builder.js +56 -0
- package/lib/horizon/friendbot_builder.d.ts +4 -0
- package/lib/horizon/friendbot_builder.js +32 -0
- package/lib/horizon/horizon_api.d.ts +527 -0
- package/lib/horizon/horizon_api.js +96 -0
- package/lib/horizon/horizon_axios_client.d.ts +30 -0
- package/lib/horizon/horizon_axios_client.js +48 -0
- package/lib/horizon/index.d.ts +7 -0
- package/lib/horizon/index.js +78 -0
- package/lib/horizon/ledger_call_builder.d.ts +21 -0
- package/lib/horizon/ledger_call_builder.js +37 -0
- package/lib/horizon/liquidity_pool_call_builder.d.ts +36 -0
- package/lib/horizon/liquidity_pool_call_builder.js +59 -0
- package/lib/horizon/offer_call_builder.d.ts +63 -0
- package/lib/horizon/offer_call_builder.js +79 -0
- package/lib/horizon/operation_call_builder.d.ts +67 -0
- package/lib/horizon/operation_call_builder.js +69 -0
- package/lib/horizon/orderbook_call_builder.d.ts +15 -0
- package/lib/horizon/orderbook_call_builder.js +45 -0
- package/lib/horizon/path_call_builder.d.ts +30 -0
- package/lib/horizon/path_call_builder.js +41 -0
- package/lib/horizon/payment_call_builder.d.ts +35 -0
- package/lib/horizon/payment_call_builder.js +46 -0
- package/lib/horizon/server.d.ts +380 -0
- package/lib/horizon/server.js +549 -0
- package/lib/horizon/server_api.d.ts +278 -0
- package/lib/horizon/server_api.js +19 -0
- package/lib/horizon/strict_receive_path_call_builder.d.ts +33 -0
- package/lib/horizon/strict_receive_path_call_builder.js +50 -0
- package/lib/horizon/strict_send_path_call_builder.d.ts +33 -0
- package/lib/horizon/strict_send_path_call_builder.js +50 -0
- package/lib/horizon/trade_aggregation_call_builder.d.ts +47 -0
- package/lib/horizon/trade_aggregation_call_builder.js +76 -0
- package/lib/horizon/trades_call_builder.d.ts +49 -0
- package/lib/horizon/trades_call_builder.js +72 -0
- package/lib/horizon/transaction_call_builder.d.ts +57 -0
- package/lib/horizon/transaction_call_builder.js +64 -0
- package/lib/horizon/types/account.d.ts +5 -0
- package/lib/horizon/types/account.js +5 -0
- package/lib/horizon/types/assets.d.ts +19 -0
- package/lib/horizon/types/assets.js +5 -0
- package/lib/horizon/types/effects.d.ts +285 -0
- package/lib/horizon/types/effects.js +62 -0
- package/lib/horizon/types/offer.d.ts +20 -0
- package/lib/horizon/types/offer.js +5 -0
- package/lib/horizon/types/trade.d.ts +13 -0
- package/lib/horizon/types/trade.js +5 -0
- package/lib/index.d.ts +37 -0
- package/lib/index.js +77 -0
- package/lib/rpc/api.d.ts +348 -0
- package/lib/rpc/api.js +32 -0
- package/lib/rpc/axios.d.ts +3 -0
- package/lib/rpc/axios.js +16 -0
- package/lib/rpc/browser.d.ts +6 -0
- package/lib/rpc/browser.js +37 -0
- package/lib/rpc/index.d.ts +7 -0
- package/lib/rpc/index.js +72 -0
- package/lib/rpc/jsonrpc.d.ts +27 -0
- package/lib/rpc/jsonrpc.js +52 -0
- package/lib/rpc/parsers.d.ts +19 -0
- package/lib/rpc/parsers.js +155 -0
- package/lib/rpc/server.d.ts +514 -0
- package/lib/rpc/server.js +737 -0
- package/lib/rpc/transaction.d.ts +19 -0
- package/lib/rpc/transaction.js +53 -0
- package/lib/rpc/utils.d.ts +1 -0
- package/lib/rpc/utils.js +9 -0
- package/lib/stellartoml/index.d.ts +121 -0
- package/lib/stellartoml/index.js +77 -0
- package/lib/utils.d.ts +12 -0
- package/lib/utils.js +31 -0
- package/lib/webauth/errors.d.ts +4 -0
- package/lib/webauth/errors.js +36 -0
- package/lib/webauth/index.d.ts +2 -0
- package/lib/webauth/index.js +27 -0
- package/lib/webauth/utils.d.ts +294 -0
- package/lib/webauth/utils.js +332 -0
- package/package.json +155 -0
- package/types/dom-monkeypatch.d.ts +126 -0
package/LICENSE
ADDED
@@ -0,0 +1,228 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright 2015 Stellar Development Foundation
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
203
|
+
|
204
|
+
----
|
205
|
+
|
206
|
+
Included code for base58 encoding is licensed under the MIT license:
|
207
|
+
|
208
|
+
Copyright (c) 2011 Google Inc
|
209
|
+
Copyright (c) 2013 BitPay Inc
|
210
|
+
|
211
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
212
|
+
of this software and associated documentation files (the "Software"), to deal
|
213
|
+
in the Software without restriction, including without limitation the rights
|
214
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
215
|
+
copies of the Software, and to permit persons to whom the Software is
|
216
|
+
furnished to do so, subject to the following conditions:
|
217
|
+
|
218
|
+
The above copyright notice and this permission notice shall be included in
|
219
|
+
all copies or substantial portions of the Software.
|
220
|
+
|
221
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
222
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
223
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
224
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
225
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
226
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
227
|
+
THE SOFTWARE.
|
228
|
+
|
package/README.md
ADDED
@@ -0,0 +1,295 @@
|
|
1
|
+
|
2
|
+
<div align="center">
|
3
|
+
<img alt="Stellar" src="https://github.com/stellar/.github/raw/master/stellar-logo.png" width="558" />
|
4
|
+
<br/>
|
5
|
+
<strong>Creating equitable access to the global financial system</strong>
|
6
|
+
<h1>js-stellar-sdk</h1>
|
7
|
+
</div>
|
8
|
+
|
9
|
+
<p align="center">
|
10
|
+
<a href="https://badge.fury.io/js/stellar-sdk"><img src="https://badge.fury.io/js/stellar-sdk.svg" alt="npm version" height="18"></a>
|
11
|
+
<a href="https://www.npmjs.com/package/@stellar/stellar-sdk">
|
12
|
+
<img alt="Weekly Downloads" src="https://img.shields.io/npm/dw/stellar-sdk" />
|
13
|
+
</a>
|
14
|
+
<a href="https://github.com/stellar/js-stellar-sdk/actions/workflows/tests.yml"><img alt="Test Status" src="https://github.com/stellar/js-stellar-sdk/actions/workflows/tests.yml/badge.svg" /></a>
|
15
|
+
</p>
|
16
|
+
|
17
|
+
js-stellar-sdk is a JavaScript library for communicating with a
|
18
|
+
[Stellar Horizon server](https://github.com/stellar/go/tree/master/services/horizon) and [Soroban RPC](https://soroban.stellar.org/docs/reference/rpc).
|
19
|
+
It is used for building Stellar apps either on Node.js or in the browser, though it can be used in other environments with some tinkering.
|
20
|
+
|
21
|
+
It provides:
|
22
|
+
|
23
|
+
- a networking layer API for Horizon endpoints (REST-based),
|
24
|
+
- a networking layer for Soroban RPC (JSONRPC-based).
|
25
|
+
- facilities for building and signing transactions, for communicating with a
|
26
|
+
Stellar Horizon instance, and for submitting transactions or querying network
|
27
|
+
history.
|
28
|
+
|
29
|
+
**Jump to:**
|
30
|
+
|
31
|
+
* [Installation](#installation): details on hitting the ground running
|
32
|
+
* [Usage](#usage): links to documentation and a variety of workarounds for non-traditional JavaScript environments
|
33
|
+
- [...with React Native](#usage-with-react-native)
|
34
|
+
- [...with Expo](#usage-with-expo-managed-workflows)
|
35
|
+
- [...with CloudFlare Workers](#usage-with-cloudflare-workers)
|
36
|
+
* [Developing](#developing): contribute to the project!
|
37
|
+
* [Understanding `stellar-sdk` vs. `stellar-base`](#stellar-sdk-vs-stellar-base)
|
38
|
+
* [License](#license)
|
39
|
+
|
40
|
+
## Installation
|
41
|
+
|
42
|
+
Using npm or yarn to include `stellar-sdk` in your own project:
|
43
|
+
|
44
|
+
```shell
|
45
|
+
npm install --save @stellar/stellar-sdk
|
46
|
+
# or
|
47
|
+
yarn add @stellar/stellar-sdk
|
48
|
+
```
|
49
|
+
|
50
|
+
Then, require or import it in your JavaScript code:
|
51
|
+
|
52
|
+
```js
|
53
|
+
var StellarSdk = require('@stellar/stellar-sdk');
|
54
|
+
// or
|
55
|
+
import * as StellarSdk from '@stellar/stellar-sdk';
|
56
|
+
```
|
57
|
+
|
58
|
+
(Preferably, you would only import the pieces you need to enable tree-shaking and lower your final bundle sizes.)
|
59
|
+
|
60
|
+
### Browsers
|
61
|
+
|
62
|
+
You can use a CDN:
|
63
|
+
|
64
|
+
```html
|
65
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/stellar-sdk/{version}/stellar-sdk.js"></script>
|
66
|
+
```
|
67
|
+
|
68
|
+
Note that this method relies using a third party to host the JS library. This may not be entirely secure. You can self-host it via [Bower](http://bower.io):
|
69
|
+
|
70
|
+
```shell
|
71
|
+
bower install @stellar/stellar-sdk
|
72
|
+
```
|
73
|
+
|
74
|
+
and include it in the browser:
|
75
|
+
|
76
|
+
```html
|
77
|
+
<script src="./bower_components/stellar-sdk/stellar-sdk.js"></script>
|
78
|
+
<script>
|
79
|
+
console.log(StellarSdk);
|
80
|
+
</script>
|
81
|
+
```
|
82
|
+
|
83
|
+
If you don't want to use or install Bower, you can copy the packaged JS files from the [Bower repo](https://github.com/stellar/bower-js-stellar-sdk), or just build the package yourself locally (see [Developing :arrow_right: Building](#building)) and copy the bundle.
|
84
|
+
|
85
|
+
| Always make sure that you are using the latest version number. They can be found on the [releases page](https://github.com/stellar/js-stellar-sdk/releases) in GitHub. |
|
86
|
+
|----|
|
87
|
+
|
88
|
+
## Usage
|
89
|
+
|
90
|
+
The usage documentation for this library lives in a handful of places:
|
91
|
+
|
92
|
+
* across the [Stellar Developer Docs](), which includes tutorials and examples,
|
93
|
+
* within [this repository itself](https://github.com/stellar/js-stellar-sdk/blob/master/docs/reference/readme.md), and
|
94
|
+
* on the generated [API doc site](https://stellar.github.io/js-stellar-sdk/).
|
95
|
+
|
96
|
+
You can also refer to:
|
97
|
+
|
98
|
+
* the [documentation](https://developers.stellar.org/network/horizon) for the Horizon REST API (if using the `Horizon` module) and
|
99
|
+
* the [documentation](https://soroban.stellar.org/docs/reference/rpc) for Soroban RPC's API (if using the `rpc` module)
|
100
|
+
|
101
|
+
### Usage with React-Native
|
102
|
+
|
103
|
+
1. Install `yarn add --dev rn-nodeify`
|
104
|
+
2. Add the following postinstall script:
|
105
|
+
```
|
106
|
+
yarn rn-nodeify --install url,events,https,http,util,stream,crypto,vm,buffer --hack --yarn
|
107
|
+
```
|
108
|
+
3. Uncomment `require('crypto')` on shim.js
|
109
|
+
4. `react-native link react-native-randombytes`
|
110
|
+
5. Create file `rn-cli.config.js`
|
111
|
+
```
|
112
|
+
module.exports = {
|
113
|
+
resolver: {
|
114
|
+
extraNodeModules: require("node-libs-react-native"),
|
115
|
+
},
|
116
|
+
};
|
117
|
+
```
|
118
|
+
6. Add `import "./shim";` to the top of `index.js`
|
119
|
+
7. `yarn add @stellar/stellar-sdk`
|
120
|
+
|
121
|
+
There is also a [sample](https://github.com/fnando/rn-stellar-sdk-sample) that you can follow.
|
122
|
+
|
123
|
+
**Note**: Only the V8 compiler (on Android) and JSC (on iOS) have proper support for `Buffer` and `Uint8Array` as is needed by this library. Otherwise, you may see bizarre errors when doing XDR encoding/decoding such as `source not specified`.
|
124
|
+
|
125
|
+
#### Usage with Expo managed workflows
|
126
|
+
|
127
|
+
1. Install `yarn add --dev rn-nodeify`
|
128
|
+
2. Add the following postinstall script:
|
129
|
+
```
|
130
|
+
yarn rn-nodeify --install process,url,events,https,http,util,stream,crypto,vm,buffer --hack --yarn
|
131
|
+
```
|
132
|
+
3. Add `import "./shim";` to the your app's entry point (by default `./App.js`)
|
133
|
+
4. `yarn add @stellar/stellar-sdk`
|
134
|
+
5. `expo install expo-random`
|
135
|
+
|
136
|
+
At this point, the Stellar SDK will work, except that `StellarSdk.Keypair.random()` will throw an error. To work around this, you can create your own method to generate a random keypair like this:
|
137
|
+
|
138
|
+
```javascript
|
139
|
+
import * as Random from 'expo-random';
|
140
|
+
import { Keypair } from '@stellar/stellar-sdk';
|
141
|
+
|
142
|
+
const generateRandomKeypair = () => {
|
143
|
+
const randomBytes = Random.getRandomBytes(32);
|
144
|
+
return Keypair.fromRawEd25519Seed(Buffer.from(randomBytes));
|
145
|
+
};
|
146
|
+
```
|
147
|
+
|
148
|
+
#### Usage with CloudFlare Workers
|
149
|
+
|
150
|
+
Both `eventsource` (needed for streaming) and `axios` (needed for making HTTP requests) are problematic dependencies in the CFW environment. The experimental branch [`make-eventsource-optional`](https://github.com/stellar/js-stellar-sdk/pull/901) is an attempt to resolve these issues.
|
151
|
+
|
152
|
+
It requires the following additional tweaks to your project:
|
153
|
+
* the `axios-fetch-adapter` lets you use `axios` with `fetch` as a backend, which is available to CF workers
|
154
|
+
* it only works with `axios@"<= 1.0.0"` versions, so we need to force an override into the underlying dependency
|
155
|
+
* and this can be problematic with newer `yarn` versions, so we need to force the environment to use Yarn 1
|
156
|
+
|
157
|
+
In summary, the `package.json` tweaks look something like this:
|
158
|
+
|
159
|
+
```jsonc
|
160
|
+
"dependencies": {
|
161
|
+
// ...
|
162
|
+
"@stellar/stellar-sdk": "git+https://github.com/stellar/js-stellar-sdk#make-eventsource-optional",
|
163
|
+
"@vespaiach/axios-fetch-adapter": "^0.3.1",
|
164
|
+
"axios": "^0.26.1"
|
165
|
+
},
|
166
|
+
"overrides": {
|
167
|
+
"@stellar/stellar-sdk": {
|
168
|
+
"axios": "$axios"
|
169
|
+
}
|
170
|
+
},
|
171
|
+
"packageManager": "yarn@1.22.19"
|
172
|
+
```
|
173
|
+
|
174
|
+
Then, you need to override the adapter in your codebase:
|
175
|
+
|
176
|
+
```typescript
|
177
|
+
import { Horizon } from '@stellar/stellar-sdk';
|
178
|
+
import fetchAdapter from '@vespaiach/axios-fetch-adapter';
|
179
|
+
|
180
|
+
Horizon.AxiosClient.defaults.adapter = fetchAdapter as any;
|
181
|
+
|
182
|
+
// then, the rest of your code...
|
183
|
+
```
|
184
|
+
|
185
|
+
All HTTP calls will use `fetch`, now, meaning it should work in the CloudFlare Worker environment.
|
186
|
+
|
187
|
+
## Developing
|
188
|
+
|
189
|
+
So you want to contribute to the library: welcome! Whether you're working on a fork or want to make an upstream request, the dev-test loop is pretty straightforward.
|
190
|
+
|
191
|
+
1. Clone the repo:
|
192
|
+
|
193
|
+
```shell
|
194
|
+
git clone https://github.com/stellar/js-stellar-sdk.git
|
195
|
+
```
|
196
|
+
|
197
|
+
2. Install dependencies inside js-stellar-sdk folder:
|
198
|
+
|
199
|
+
```shell
|
200
|
+
cd js-stellar-sdk
|
201
|
+
yarn
|
202
|
+
```
|
203
|
+
|
204
|
+
3. Install Node 18
|
205
|
+
|
206
|
+
Because we support the oldest maintenance version of Node, please install and develop on Node 18 so you don't get surprised when your code works locally but breaks in CI.
|
207
|
+
|
208
|
+
Here's how to install `nvm` if you haven't: https://github.com/creationix/nvm
|
209
|
+
|
210
|
+
```shell
|
211
|
+
nvm install 18
|
212
|
+
|
213
|
+
# if you've never installed 18 before you'll want to re-install yarn
|
214
|
+
npm install -g yarn
|
215
|
+
```
|
216
|
+
|
217
|
+
If you work on several projects that use different Node versions, you might it helpful to install this automatic version manager: https://github.com/wbyoung/avn
|
218
|
+
|
219
|
+
4. Observe the project's code style
|
220
|
+
|
221
|
+
While you're making changes, make sure to run the linter to catch any linting
|
222
|
+
errors (in addition to making sure your text editor supports ESLint) and conform to the project's code style.
|
223
|
+
|
224
|
+
```shell
|
225
|
+
yarn fmt
|
226
|
+
```
|
227
|
+
|
228
|
+
### Building
|
229
|
+
You can build the developer version (unoptimized, commented, with source maps, etc.) or the production bundles:
|
230
|
+
|
231
|
+
```shell
|
232
|
+
yarn build
|
233
|
+
# or
|
234
|
+
yarn build:prod
|
235
|
+
```
|
236
|
+
|
237
|
+
### Testing
|
238
|
+
|
239
|
+
To run all tests:
|
240
|
+
|
241
|
+
```shell
|
242
|
+
yarn test
|
243
|
+
```
|
244
|
+
|
245
|
+
To run a specific set of tests:
|
246
|
+
|
247
|
+
```shell
|
248
|
+
yarn test:node
|
249
|
+
yarn test:browser
|
250
|
+
yarn test:integration
|
251
|
+
```
|
252
|
+
|
253
|
+
In order to have a faster test loop, these suite-specific commands **do not** build the bundles first (unlike `yarn test`). If you make code changes, you will need to run `yarn build` (or a subset like `yarn build:node` corresponding to the test suite) before running the tests again to see your changes.
|
254
|
+
|
255
|
+
To generate and check the documentation site:
|
256
|
+
|
257
|
+
```shell
|
258
|
+
# install the `serve` command if you don't have it already
|
259
|
+
npm i -g serve
|
260
|
+
|
261
|
+
# clone the base library for complete docs
|
262
|
+
git clone https://github.com/stellar/js-stellar-base
|
263
|
+
|
264
|
+
# generate the docs files
|
265
|
+
yarn docs
|
266
|
+
|
267
|
+
# get these files working in a browser
|
268
|
+
cd jsdoc && serve .
|
269
|
+
|
270
|
+
# you'll be able to browse the docs at http://localhost:5000
|
271
|
+
```
|
272
|
+
|
273
|
+
### Publishing
|
274
|
+
|
275
|
+
For information on how to contribute or publish new versions of this software to `npm`, please refer to our [contribution guide](https://github.com/stellar/js-stellar-sdk/blob/master/CONTRIBUTING.md).
|
276
|
+
|
277
|
+
## Miscellaneous
|
278
|
+
|
279
|
+
### `stellar-sdk` vs `stellar-base`
|
280
|
+
|
281
|
+
`stellar-sdk` is a high-level library that serves as client-side API for Horizon and Soroban RPC, while [`stellar-base](https://github.com/stellar/js-stellar-base) is lower-level library for creating Stellar primitive constructs via XDR helpers and wrappers.
|
282
|
+
|
283
|
+
**Most people will want stellar-sdk instead of stellar-base.** You should only use stellar-base if you know what you're doing!
|
284
|
+
|
285
|
+
If you add `stellar-sdk` to a project, **do not add `stellar-base`!** Mismatching versions could cause weird, hard-to-find bugs. `stellar-sdk` automatically installs `stellar-base` and exposes all of its exports in case you need them.
|
286
|
+
|
287
|
+
> **Important!** The Node.js version of the `stellar-base` (`stellar-sdk` dependency) package uses the [`sodium-native`](https://www.npmjs.com/package/sodium-native) package as an [optional dependency](https://docs.npmjs.com/files/package.json#optionaldependencies). `sodium-native` is a low level binding to [libsodium](https://github.com/jedisct1/libsodium), (an implementation of [Ed25519](https://ed25519.cr.yp.to/) signatures).
|
288
|
+
> If installation of `sodium-native` fails, or it is unavailable, `stellar-base` (and `stellar-sdk`) will fallback to using the [`tweetnacl`](https://www.npmjs.com/package/tweetnacl) package implementation. If you are using them in a browser, you can ignore this. However, for production backend deployments, you should be using `sodium-native`.
|
289
|
+
> If `sodium-native` is successfully installed and working the `StellarSdk.FastSigning` variable will return `true`.
|
290
|
+
|
291
|
+
### License
|
292
|
+
|
293
|
+
js-stellar-sdk is licensed under an Apache-2.0 license. See the
|
294
|
+
[LICENSE](https://github.com/stellar/js-stellar-sdk/blob/master/LICENSE) file
|
295
|
+
for details.
|