File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ shift
1010commands=" $* "
1111
1212if [[ -z " $deployment " ]]; then
13- echo " usage: $( basename " $0 " ) <local|devnet|devnet-neo|devnet- university|testnet|mainnet-neo >"
13+ echo " usage: $( basename " $0 " ) <local|devnet|devnet-university|testnet|mainnet>"
1414 exit 1
1515fi
1616
17- valid_deployments=(" local" " devnet" " devnet-neo " " devnet- university" " testnet" " mainnet-neo " )
17+ valid_deployments=(" local" " devnet" " devnet-university" " testnet" " mainnet" )
1818if [[ ! " ${valid_deployments[*]} " =~ ${deployment} ]]; then
1919 echo " Invalid deployment option. Please choose either: ${valid_deployments[*]} ."
2020 exit 1
Original file line number Diff line number Diff line change 11export enum ArbitratorTypes {
22 vanilla ,
33 university ,
4- neo ,
54}
65
76export const getArbitratorType = ( id : keyof typeof ArbitratorTypes = "vanilla" as const ) : ArbitratorTypes =>
You can’t perform that action at this time.
0 commit comments