Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bindings #35

Merged
merged 4 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/examples/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@huma-finance/soroban-examples",
"version": "0.0.14",
"version": "0.0.15",
"description": "",
"private": true,
"main": "src/mintReceivable.js",
Expand Down
20 changes: 10 additions & 10 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@huma-finance/soroban-sdk",
"version": "0.0.14",
"version": "0.0.15",
"types": "./dist/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
Expand All @@ -27,15 +27,15 @@
"binding": "ts-node --project ./tsconfig.script.json scripts/bindings.ts"
},
"dependencies": {
"@huma-finance/soroban-credit-manager": "^0.0.14",
"@huma-finance/soroban-credit-storage": "^0.0.14",
"@huma-finance/soroban-huma-config": "^0.0.14",
"@huma-finance/soroban-pool": "^0.0.14",
"@huma-finance/soroban-pool-credit": "^0.0.14",
"@huma-finance/soroban-pool-manager": "^0.0.14",
"@huma-finance/soroban-pool-storage": "^0.0.14",
"@huma-finance/soroban-sep41": "^0.0.14",
"@huma-finance/soroban-tranche-vault": "^0.0.14",
"@huma-finance/soroban-credit-manager": "^0.0.15",
"@huma-finance/soroban-credit-storage": "^0.0.15",
"@huma-finance/soroban-huma-config": "^0.0.15",
"@huma-finance/soroban-pool": "^0.0.15",
"@huma-finance/soroban-pool-credit": "^0.0.15",
"@huma-finance/soroban-pool-manager": "^0.0.15",
"@huma-finance/soroban-pool-storage": "^0.0.15",
"@huma-finance/soroban-sep41": "^0.0.15",
"@huma-finance/soroban-tranche-vault": "^0.0.15",
"@stellar/stellar-sdk": "^12.1.0",
"dotenv": "^16.0.3",
"ts-node": "^10.9.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/tb-creditManager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ This library was automatically generated by Soroban CLI using a command similar

```bash
soroban contract bindings ts \
--rpc-url https://soroban-testnet.stellar.org:443 \
--network-passphrase "Test SDF Network ; September 2015" \
--contract-id CDHYIC3ISV3F3RL7FROC3SI2GW65ZOJHMA2AMZJYLIRLWSDELFF3CR23 \
--rpc-url https://mainnet.sorobanrpc.com \
--network-passphrase "Public Global Stellar Network ; September 2015" \
--contract-id CD7FKCTK2Z3KX7RZEEKD632RIR7J65KALICV6G7W4UPRMF65RNXAT5AM \
--output-dir ./path/to/tb-creditManager
```

Expand All @@ -30,7 +30,7 @@ However, we've actually encountered [frustration](https://github.com/stellar/sor

```json
"scripts": {
"postinstall": "soroban contract bindings ts --rpc-url https://soroban-testnet.stellar.org:443 --network-passphrase \"Test SDF Network ; September 2015\" --id CDHYIC3ISV3F3RL7FROC3SI2GW65ZOJHMA2AMZJYLIRLWSDELFF3CR23 --name tb-creditManager"
"postinstall": "soroban contract bindings ts --rpc-url https://mainnet.sorobanrpc.com --network-passphrase \"Public Global Stellar Network ; September 2015\" --id CD7FKCTK2Z3KX7RZEEKD632RIR7J65KALICV6G7W4UPRMF65RNXAT5AM --name tb-creditManager"
}
```

Expand Down
2 changes: 1 addition & 1 deletion packages/tb-creditManager/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.0.14",
"version": "0.0.15",
"name": "@huma-finance/soroban-credit-manager",
"exports": "./dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
Loading