Skip to content

Commit 6483711

Browse files
authored
Merge pull request #713 from onflow/feature/sandboxnet
Add sandboxnet to default networks
2 parents 7a1c804 + eb00c35 commit 6483711

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

pkg/flowkit/config/network.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,13 @@ func DefaultTestnetNetwork() Network {
8686
}
8787
}
8888

89+
func DefaultSandboxNetwork() Network {
90+
return Network{
91+
Name: "sandboxnet",
92+
Host: "access.sandboxnet.nodes.onflow.org:9000",
93+
}
94+
}
95+
8996
// DefaultMainnetNetwork get default mainnet network.
9097
func DefaultMainnetNetwork() Network {
9198
return Network{
@@ -99,6 +106,7 @@ func DefaultNetworks() Networks {
99106
return Networks{
100107
DefaultEmulatorNetwork(),
101108
DefaultTestnetNetwork(),
109+
DefaultSandboxNetwork(),
102110
DefaultMainnetNetwork(),
103111
}
104112
}

0 commit comments

Comments
 (0)