Documentation ¶
Overview ¶
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Copyright (C) 2022, Ava Labs, Inc. All rights reserved. See the file LICENSE for licensing terms.
Index ¶
- Constants
- Variables
- func GetCurrentSupply(subnetID ids.ID) error
- func GetFirstEndpoint(clusterInfo *rpcpb.ClusterInfo, chain string) string
- func GetLocallyDeployedSubnets() (map[string]struct{}, error)
- func GetLocallyDeployedSubnetsFromFile(app *application.Avalanche) ([]string, error)
- func GetOwners(network models.Network, subnetID ids.ID) ([]string, uint32, error)
- func GetSubnetValidators(subnetID ids.ID) ([]platformvm.ClientPermissionlessValidator, error)
- func HasEndpoints(clusterInfo *rpcpb.ClusterInfo) bool
- func IsSubnetValidator(subnetID ids.ID, nodeID ids.NodeID, network models.Network) (bool, error)
- func IssueRemoveSubnetValidatorTx(kc keychain.Keychain, subnetID ids.ID, nodeID ids.NodeID) (ids.ID, error)
- func IssueTransformSubnetTx(elasticSubnetConfig models.ElasticSubnetConfig, kc keychain.Keychain, ...) (ids.ID, ids.ID, error)
- func SetDefaultSnapshot(snapshotsDir string, force bool) error
- func WaitForHealthy(ctx context.Context, cli client.Client) (*rpcpb.ClusterInfo, error)
- type LocalDeployer
- type PublicDeployer
- func (d *PublicDeployer) AddValidator(subnetAuthKeysStrs []string, subnet ids.ID, nodeID ids.NodeID, weight uint64, ...) (bool, *txs.Tx, error)
- func (d *PublicDeployer) Commit(tx *txs.Tx) (ids.ID, error)
- func (d *PublicDeployer) Deploy(controlKeys []string, subnetAuthKeysStrs []string, threshold uint32, ...) (bool, ids.ID, ids.ID, *txs.Tx, error)
- func (d *PublicDeployer) RemoveValidator(subnetAuthKeysStrs []string, subnet ids.ID, nodeID ids.NodeID) (bool, *txs.Tx, error)
- func (d *PublicDeployer) Sign(tx *txs.Tx, subnetAuthKeysStrs []string, subnet ids.ID) error
- type Publisher
Constants ¶
const (
WriteReadReadPerms = 0o644
)
Variables ¶
var ErrNoSubnetAuthKeysInWallet = errors.New("wallet does not contain subnet auth keys")
Functions ¶
func GetCurrentSupply ¶ added in v1.2.0
func GetFirstEndpoint ¶ added in v1.1.0
func GetFirstEndpoint(clusterInfo *rpcpb.ClusterInfo, chain string) string
GetFirstEndpoint get a human readable endpoint for the given chain
func GetLocallyDeployedSubnets ¶ added in v1.1.0
Returns an error if the server cannot be contacted. You may want to ignore this error.
func GetLocallyDeployedSubnetsFromFile ¶ added in v1.1.1
func GetLocallyDeployedSubnetsFromFile(app *application.Avalanche) ([]string, error)
func GetSubnetValidators ¶ added in v1.2.0
func GetSubnetValidators(subnetID ids.ID) ([]platformvm.ClientPermissionlessValidator, error)
func HasEndpoints ¶ added in v1.1.0
func HasEndpoints(clusterInfo *rpcpb.ClusterInfo) bool
HasEndpoints returns true if cluster info contains custom blockchains
func IsSubnetValidator ¶ added in v1.2.0
func IssueRemoveSubnetValidatorTx ¶ added in v1.2.0
func IssueTransformSubnetTx ¶ added in v1.2.0
func SetDefaultSnapshot ¶ added in v0.1.4
Initialize default snapshot with bootstrap snapshot archive If force flag is set to true, overwrite the default snapshot if it exists
func WaitForHealthy ¶ added in v1.1.0
WaitForHealthy polls continuously until the network is ready to be used
Types ¶
type LocalDeployer ¶ added in v0.2.2
type LocalDeployer struct {
// contains filtered or unexported fields
}
func NewLocalDeployer ¶ added in v0.1.3
func NewLocalDeployer(app *application.Avalanche, avagoVersion string, vmBin string) *LocalDeployer
func (*LocalDeployer) BackendStartedHere ¶ added in v0.2.2
func (d *LocalDeployer) BackendStartedHere() bool
BackendStartedHere returns true if the backend was started by this run, or false if it found it there already
func (*LocalDeployer) DeployToLocalNetwork ¶ added in v0.2.2
func (d *LocalDeployer) DeployToLocalNetwork(chain string, chainGenesis []byte, genesisPath string) (ids.ID, ids.ID, error)
DeployToLocalNetwork does the heavy lifting: * it checks the gRPC is running, if not, it starts it * kicks off the actual deployment
func (*LocalDeployer) SetupLocalEnv ¶ added in v0.2.2
func (d *LocalDeployer) SetupLocalEnv() (string, error)
SetupLocalEnv also does some heavy lifting: * sets up default snapshot if not installed * checks if avalanchego is installed in the local binary path * if not, it downloads it and installs it (os - and archive dependent) * returns the location of the avalanchego path
func (*LocalDeployer) StartServer ¶ added in v0.2.2
func (d *LocalDeployer) StartServer() error
type PublicDeployer ¶ added in v0.2.0
type PublicDeployer struct { LocalDeployer // contains filtered or unexported fields }
func NewPublicDeployer ¶ added in v0.2.0
func NewPublicDeployer(app *application.Avalanche, usingLedger bool, kc keychain.Keychain, network models.Network) *PublicDeployer
func (*PublicDeployer) AddValidator ¶ added in v0.2.0
func (d *PublicDeployer) AddValidator( subnetAuthKeysStrs []string, subnet ids.ID, nodeID ids.NodeID, weight uint64, startTime time.Time, duration time.Duration, ) (bool, *txs.Tx, error)
adds a subnet validator to the given subnet - verifies that the wallet is one of the subnet auth keys (so as to sign the AddSubnetValidator tx) - if operation is multisig (len(subnetAuthKeysStrs) > 1):
- creates an add subnet validator tx
- sets the change output owner to be a wallet address (if not, it may go to any other subnet auth address)
- signs the tx with the wallet as the owner of fee outputs and one of the subnet auth keys
- returns the tx so that it can be later on be signed by the rest of the subnet auth keys
- if operation is not multisig (len(subnetAuthKeysStrs) == 1):
- creates and issues an add validator tx, signing the tx with the wallet as the owner of fee outputs and the only one subnet auth key
func (*PublicDeployer) Deploy ¶ added in v0.2.0
func (d *PublicDeployer) Deploy( controlKeys []string, subnetAuthKeysStrs []string, threshold uint32, chain string, genesis []byte, ) (bool, ids.ID, ids.ID, *txs.Tx, error)
deploys the given [chain] - verifies that the wallet is one of the subnet auth keys (so as to sign the CreateBlockchain tx) - creates a subnet using the given [controlKeys] and [threshold] as subnet authentication parameters - if operation is multisig (len(subnetAuthKeysStrs) > 1):
- creates a blockchain tx
- sets the change output owner to be a wallet address (if not, it may go to any other subnet auth address)
- signs the tx with the wallet as the owner of fee outputs and one of the subnet auth keys
- returns the tx so that it can be later on be signed by the rest of the subnet auth keys
- if operation is not multisig (len(subnetAuthKeysStrs) == 1):
- creates and issues a blockchain tx, signing the tx with the wallet as the owner of fee outputs and the only one subnet auth key
- returns the blockchain tx id
func (*PublicDeployer) RemoveValidator ¶ added in v1.2.0
func (d *PublicDeployer) RemoveValidator( subnetAuthKeysStrs []string, subnet ids.ID, nodeID ids.NodeID, ) (bool, *txs.Tx, error)
removes a subnet validator from the given subnet - verifies that the wallet is one of the subnet auth keys (so as to sign the AddSubnetValidator tx) - if operation is multisig (len(subnetAuthKeysStrs) > 1):
- creates an add subnet validator tx
- sets the change output owner to be a wallet address (if not, it may go to any other subnet auth address)
- signs the tx with the wallet as the owner of fee outputs and one of the subnet auth keys
- returns the tx so that it can be later on be signed by the rest of the subnet auth keys
- if operation is not multisig (len(subnetAuthKeysStrs) == 1):
- creates and issues an add validator tx, signing the tx with the wallet as the owner of fee outputs and the only one subnet auth key
type Publisher ¶ added in v0.2.3
type Publisher interface { Publish(r *git.Repository, subnetName, vmName string, subnetYAML []byte, vmYAML []byte) error GetRepo() (*git.Repository, error) }