We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a1c804 + eb00c35 commit 6483711Copy full SHA for 6483711
1 file changed
pkg/flowkit/config/network.go
@@ -86,6 +86,13 @@ func DefaultTestnetNetwork() Network {
86
}
87
88
89
+func DefaultSandboxNetwork() Network {
90
+ return Network{
91
+ Name: "sandboxnet",
92
+ Host: "access.sandboxnet.nodes.onflow.org:9000",
93
+ }
94
+}
95
+
96
// DefaultMainnetNetwork get default mainnet network.
97
func DefaultMainnetNetwork() Network {
98
return Network{
@@ -99,6 +106,7 @@ func DefaultNetworks() Networks {
99
106
return Networks{
100
107
DefaultEmulatorNetwork(),
101
108
DefaultTestnetNetwork(),
109
+ DefaultSandboxNetwork(),
102
110
DefaultMainnetNetwork(),
103
111
104
112
0 commit comments