UNPKG
@sega-so/sega-sdk
Version:
latest (0.1.5)
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
An SDK for building applications on top of SEGA.
@sega-so/sega-sdk
/
lib
/
common
/
network.d.ts
10 lines
(7 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Connection
}
from
'@solana/web3.js'
;
declare
enum
Network
{
SonicMainnet
=
"SonicMainnet"
,
SonicTestnetV1
=
"SonicTestnetV1"
}
declare
function
getConnection
(
networkName
:
string
,
isArchive
?:
boolean
):
Connection
;
export
{
Network
, getConnection };