Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion networks.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2024 Blink Labs Software
// Copyright 2025 Blink Labs Software
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -70,6 +70,11 @@ var (
},
},
}
NetworkDevnet = Network{
Id: common.AddressNetworkTestnet,
Name: "devnet",
NetworkMagic: 42,
}
)

// List of valid networks for use in lookup functions
Expand All @@ -78,6 +83,7 @@ var networks = []Network{
NetworkPreprod,
NetworkPreview,
NetworkSancho,
NetworkDevnet,
}

// NetworkByName returns a predefined network by name
Expand Down
Loading