Skip to content

Commit d1f0b76

Browse files
authored
feat: devnet network (#890)
Signed-off-by: Chris Gianelloni <[email protected]>
1 parent dcbfa14 commit d1f0b76

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

networks.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2024 Blink Labs Software
1+
// Copyright 2025 Blink Labs Software
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -70,6 +70,11 @@ var (
7070
},
7171
},
7272
}
73+
NetworkDevnet = Network{
74+
Id: common.AddressNetworkTestnet,
75+
Name: "devnet",
76+
NetworkMagic: 42,
77+
}
7378
)
7479

7580
// List of valid networks for use in lookup functions
@@ -78,6 +83,7 @@ var networks = []Network{
7883
NetworkPreprod,
7984
NetworkPreview,
8085
NetworkSancho,
86+
NetworkDevnet,
8187
}
8288

8389
// NetworkByName returns a predefined network by name

0 commit comments

Comments
 (0)