File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ let List/any = Prelude.List.any
44
55let Network
66 : Type
7- = < Devnet | Mainnet | Berkeley | DevnetLegacy | MainnetLegacy | PreMesa1 >
7+ = < Devnet | Mainnet | Berkeley | DevnetLegacy | MainnetLegacy | PreMesa1 | Mesa >
88
99let capitalName =
1010 \ (network : Network )
@@ -15,6 +15,7 @@ let capitalName =
1515 , DevnetLegacy = " DevnetLegacy"
1616 , MainnetLegacy = " MainnetLegacy"
1717 , PreMesa1 = " PreMesa1"
18+ , Mesa = " Mesa"
1819 }
1920 network
2021
@@ -27,6 +28,7 @@ let lowerName =
2728 , DevnetLegacy = " devnet_legacy"
2829 , MainnetLegacy = " mainnet_legacy"
2930 , PreMesa1 = " hetzner-pre-mesa-1"
31+ , Mesa = " mesa"
3032 }
3133 network
3234
@@ -39,6 +41,7 @@ let requiresMainnetBuild =
3941 , DevnetLegacy = True
4042 , MainnetLegacy = True
4143 , PreMesa1 = False
44+ , Mesa = False
4245 }
4346 network
4447
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ let fromNetwork =
4343 , DevnetLegacy = Profile. Devnet
4444 , MainnetLegacy = Profile. Mainnet
4545 , PreMesa1 = Profile. Devnet
46+ , Mesa = Profile. Devnet
4647 }
4748 network
4849
You can’t perform that action at this time.
0 commit comments