Skip to content
Merged
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
8 changes: 8 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
export { resolveNetwork } from "./network/resolveNetwork";
export type { NetworkOverrides } from "./network/resolveNetwork";
export type { ResolvedNetworkConfig } from "./shared/types";
export { checkNetworkHealth, NetworkSwitcher, getNetwork, setNetwork } from "./network";

Check failure on line 50 in src/index.ts

View workflow job for this annotation

GitHub Actions / validate-merge

Duplicate identifier 'NetworkSwitcher'.

Check failure on line 50 in src/index.ts

View workflow job for this annotation

GitHub Actions / validate-merge

Duplicate identifier 'checkNetworkHealth'.

Check failure on line 50 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (18.x)

Duplicate identifier 'NetworkSwitcher'.

Check failure on line 50 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (18.x)

Duplicate identifier 'checkNetworkHealth'.

Check failure on line 50 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (20.x)

Duplicate identifier 'NetworkSwitcher'.

Check failure on line 50 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (20.x)

Duplicate identifier 'checkNetworkHealth'.
export { checkNetworkHealth, NetworkSwitcher, NETWORK_DEFAULTS } from "./network";

Check failure on line 51 in src/index.ts

View workflow job for this annotation

GitHub Actions / validate-merge

Duplicate identifier 'NetworkSwitcher'.

Check failure on line 51 in src/index.ts

View workflow job for this annotation

GitHub Actions / validate-merge

Duplicate identifier 'checkNetworkHealth'.

Check failure on line 51 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (18.x)

Duplicate identifier 'NetworkSwitcher'.

Check failure on line 51 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (18.x)

Duplicate identifier 'checkNetworkHealth'.

Check failure on line 51 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (20.x)

Duplicate identifier 'NetworkSwitcher'.

Check failure on line 51 in src/index.ts

View workflow job for this annotation

GitHub Actions / test (20.x)

Duplicate identifier 'checkNetworkHealth'.
export type {
CheckNetworkHealthOptions,
NetworkEndpointHealth,
Expand Down Expand Up @@ -80,6 +81,10 @@
BalanceAlertRule,
SponsorshipResult,
} from "./account/types";
// Standalone account functions for use without a client instance
export { getAccount } from "./account/getAccount";
export { getBalances } from "./account/getBalances";
export { getAssetBalances } from "./account/getAssetBalances";

// ─── Transaction validation ───────────────────────────────────────────────────
export {
Expand Down Expand Up @@ -203,6 +208,9 @@
TransactionTemplateStore,
TemplateParamValue,
} from "./transaction";
// Standalone transaction functions for use without a client instance
export { submitTransaction } from "./transaction/submitTransaction";
export { getTransactionStatus } from "./transaction/status";

// ─── Soroban simulator (#210) ──────────────────────────────────────────────────
export { SorobanSimulator } from "./soroban/simulator";
Expand Down
Loading