Skip to content
Draft
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
Binary file added local-pkgs/stellar-base-cap0084-v2.tgz
Binary file not shown.
Binary file added local-pkgs/stellar-sdk-cap0084-v2.tgz
Binary file not shown.
Binary file added local-pkgs/stellar-xdr-json-cap0084.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"@sentry/nextjs": "^10.29.0",
"@stellar-expert/contract-wasm-interface-parser": "^4.1.0",
"@stellar/design-system": "^3.2.7",
"@stellar/stellar-sdk": "16.0.0",
"@stellar/stellar-xdr-json": "^27.0.0",
"@stellar/stellar-sdk": "file:./local-pkgs/stellar-sdk-cap0084-v2.tgz",
"@stellar/stellar-xdr-json": "file:./local-pkgs/stellar-xdr-json-cap0084.tgz",
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@trezor/connect-plugin-stellar": "^9.2.3",
Expand Down
209 changes: 61 additions & 148 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ minimumReleaseAgeExclude:
- "@stellar/design-system"
- "@stellar/stellar-xdr-json"
overrides:
"@stellar/stellar-base": "file:./local-pkgs/stellar-base-cap0084-v2.tgz"
"debug@4.4.2": "4.4.1"
"chalk@5.6.1": "5.6.2"
"ansi-regex@6.2.1": "6.2.2"
Expand Down
9 changes: 6 additions & 3 deletions src/store/createStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,9 +216,12 @@ interface CreateStoreOptions {
const defaultCustomNetwork = {
id: "custom",
label: "Custom",
horizonUrl: "http://localhost:8000",
rpcUrl: "http://localhost:8000/rpc",
passphrase: "Standalone Network ; February 2017",
horizonUrl:
process.env.NEXT_PUBLIC_CUSTOM_HORIZON_URL || "http://localhost:8000",
rpcUrl: process.env.NEXT_PUBLIC_CUSTOM_RPC_URL || "http://localhost:8000/rpc",
passphrase:
process.env.NEXT_PUBLIC_CUSTOM_PASSPHRASE ||
"Standalone Network ; February 2017",
};

const initNetwork =
Expand Down
Loading