From 804eca5e6a4cfa7edce1477ecfcf5630b5cba15b Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Thu, 13 Feb 2025 16:35:50 -0500 Subject: [PATCH] feat: devnet network Signed-off-by: Chris Gianelloni --- networks.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/networks.go b/networks.go index f54f7d0e..f41b94a5 100644 --- a/networks.go +++ b/networks.go @@ -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. @@ -70,6 +70,11 @@ var ( }, }, } + NetworkDevnet = Network{ + Id: common.AddressNetworkTestnet, + Name: "devnet", + NetworkMagic: 42, + } ) // List of valid networks for use in lookup functions @@ -78,6 +83,7 @@ var networks = []Network{ NetworkPreprod, NetworkPreview, NetworkSancho, + NetworkDevnet, } // NetworkByName returns a predefined network by name