2024-01-31 14:26:26 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
const (
|
|
|
|
ConsensusAccountName = "consensus"
|
|
|
|
ProtoConfigPath = "protocol"
|
|
|
|
|
|
|
|
// MaxAlphabetNodes is the maximum number of candidates allowed, which is currently limited by the size
|
|
|
|
// of the invocation script.
|
|
|
|
// See: https://github.com/nspcc-dev/neo-go/blob/740488f7f35e367eaa99a71c0a609c315fe2b0fc/pkg/core/transaction/witness.go#L10
|
|
|
|
MaxAlphabetNodes = 22
|
|
|
|
|
2024-02-01 06:51:24 +00:00
|
|
|
EndpointFlag = "rpc-endpoint"
|
|
|
|
EndpointFlagDesc = "N3 RPC node endpoint"
|
|
|
|
EndpointFlagShort = "r"
|
|
|
|
AlphabetWalletsFlag = "alphabet-wallets"
|
|
|
|
AlphabetWalletsFlagDesc = "Path to alphabet wallets dir"
|
2024-01-31 14:26:26 +00:00
|
|
|
)
|