We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcbfa14 commit d1f0b76Copy full SHA for d1f0b76
networks.go
@@ -1,4 +1,4 @@
1
-// Copyright 2024 Blink Labs Software
+// Copyright 2025 Blink Labs Software
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
@@ -70,6 +70,11 @@ var (
70
},
71
72
}
73
+ NetworkDevnet = Network{
74
+ Id: common.AddressNetworkTestnet,
75
+ Name: "devnet",
76
+ NetworkMagic: 42,
77
+ }
78
)
79
80
// List of valid networks for use in lookup functions
@@ -78,6 +83,7 @@ var networks = []Network{
83
NetworkPreprod,
84
NetworkPreview,
85
NetworkSancho,
86
+ NetworkDevnet,
81
87
82
88
89
// NetworkByName returns a predefined network by name
0 commit comments