blob: 7f54032211fe8320f2b94a7558c6c451433348d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
export declare enum NETWORK_NAMES {
TESTNET = "Test Net",
PUBNET = "Main Net",
FUTURENET = "Future Net"
}
export declare enum NETWORKS {
PUBLIC = "PUBLIC",
TESTNET = "TESTNET",
FUTURENET = "FUTURENET"
}
export declare enum NETWORK_URLS {
PUBLIC = "https://horizon.stellar.org",
TESTNET = "https://horizon-testnet.stellar.org",
FUTURENET = "https://horizon-futurenet.stellar.org"
}
export declare enum FRIENDBOT_URLS {
TESTNET = "https://friendbot.stellar.org",
FUTURENET = "https://friendbot-futurenet.stellar.org"
}
export declare const SOROBAN_RPC_URLS: {
[key in NETWORKS]?: string;
};
export interface NetworkDetails {
network: string;
networkName: string;
networkUrl: string;
networkPassphrase: string;
friendbotUrl?: string;
sorobanRpcUrl?: string;
}
export declare const MAINNET_NETWORK_DETAILS: NetworkDetails;
export declare const TESTNET_NETWORK_DETAILS: NetworkDetails;
export declare const FUTURENET_NETWORK_DETAILS: NetworkDetails;
export declare const DEFAULT_NETWORKS: Array<NetworkDetails>;
|