@huma-finance/soroban-pool-manager 0.0.15 → 0.0.17-beta.65
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/README.md +4 -4
- package/dist/cjs/index.d.ts +780 -0
- package/dist/cjs/index.js +163 -0
- package/dist/index.d.ts +81 -105
- package/dist/index.js +79 -46
- package/package.json +10 -4
- package/src/index.ts +87 -89
- package/tsconfig.cjs.json +22 -0
- package/tsconfig.json +93 -11
- package/tsconfig.tsbuildinfo +1 -0
package/README.md
CHANGED
|
@@ -6,9 +6,9 @@ This library was automatically generated by Soroban CLI using a command similar
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
soroban contract bindings ts \
|
|
9
|
-
--rpc-url https://
|
|
10
|
-
--network-passphrase "
|
|
11
|
-
--contract-id
|
|
9
|
+
--rpc-url https://mainnet.sorobanrpc.com \
|
|
10
|
+
--network-passphrase "Public Global Stellar Network ; September 2015" \
|
|
11
|
+
--contract-id CBQ7KII3OETETYM65TFJT2YPVFFK42V4WUBIMJJNWKTIZ5XOWYZW3XAO \
|
|
12
12
|
--output-dir ./path/to/tb-poolManager
|
|
13
13
|
```
|
|
14
14
|
|
|
@@ -30,7 +30,7 @@ However, we've actually encountered [frustration](https://github.com/stellar/sor
|
|
|
30
30
|
|
|
31
31
|
```json
|
|
32
32
|
"scripts": {
|
|
33
|
-
"postinstall": "soroban contract bindings ts --rpc-url https://
|
|
33
|
+
"postinstall": "soroban contract bindings ts --rpc-url https://mainnet.sorobanrpc.com --network-passphrase \"Public Global Stellar Network ; September 2015\" --id CBQ7KII3OETETYM65TFJT2YPVFFK42V4WUBIMJJNWKTIZ5XOWYZW3XAO --name tb-poolManager"
|
|
34
34
|
}
|
|
35
35
|
```
|
|
36
36
|
|