cmd

package
v1.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 30, 2024 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DefaultCheckerConfig added in v0.26.0

func DefaultCheckerConfig(
	checkers map[common.Location]*sema.Checker,
	codes map[common.Location][]byte,
	standardLibraryValues []stdlib.StandardLibraryValue,
) *sema.Config

func ExitWithError

func ExitWithError(message string)

func PrepareChecker

func PrepareChecker(
	program *ast.Program,
	location common.Location,
	codes map[common.Location][]byte,
	memberAccountAccess map[common.Location]map[common.Location]struct{},
	standardLibraryValues []stdlib.StandardLibraryValue,
	must func(error),
) (*sema.Checker, func(error))

PrepareChecker prepares and initializes a checker with a given code as a string, and a filename which is used for pretty-printing errors, if any

func PrepareInterpreter

func PrepareInterpreter(filename string, debugger *interpreter.Debugger) (*interpreter.Interpreter, *sema.Checker, func(error))

func PrepareProgram added in v0.7.0

func PrepareProgram(code []byte, location common.Location, codes map[common.Location][]byte) (*ast.Program, func(error))

func PrepareProgramFromFile added in v0.7.0

func PrepareProgramFromFile(location common.StringLocation, codes map[common.Location][]byte) (*ast.Program, func(error))

Types

type StandardLibraryHandler added in v1.0.0

type StandardLibraryHandler struct {
	// contains filtered or unexported fields
}

func (*StandardLibraryHandler) AccountKeysCount added in v1.0.0

func (*StandardLibraryHandler) AccountKeysCount(_ common.Address) (uint32, error)

func (*StandardLibraryHandler) AddAccountKey added in v1.0.0

func (*StandardLibraryHandler) BLSAggregatePublicKeys added in v1.0.0

func (*StandardLibraryHandler) BLSAggregatePublicKeys(_ []*stdlib.PublicKey) (*stdlib.PublicKey, error)

func (*StandardLibraryHandler) BLSAggregateSignatures added in v1.0.0

func (*StandardLibraryHandler) BLSAggregateSignatures(_ [][]byte) ([]byte, error)

func (*StandardLibraryHandler) BLSVerifyPOP added in v1.0.0

func (*StandardLibraryHandler) BLSVerifyPOP(_ *stdlib.PublicKey, _ []byte) (bool, error)

func (*StandardLibraryHandler) CommitStorageTemporarily added in v1.0.0

func (*StandardLibraryHandler) CommitStorageTemporarily(_ *interpreter.Interpreter) error

func (*StandardLibraryHandler) ContractUpdateRecorded added in v1.0.0

func (h *StandardLibraryHandler) ContractUpdateRecorded(_ common.AddressLocation) bool

func (*StandardLibraryHandler) CreateAccount added in v1.0.0

func (*StandardLibraryHandler) CreateAccount(_ common.Address) (address common.Address, err error)

func (*StandardLibraryHandler) EmitEvent added in v1.0.0

func (*StandardLibraryHandler) EndContractAddition added in v1.0.0

func (h *StandardLibraryHandler) EndContractAddition(common.AddressLocation)

func (*StandardLibraryHandler) GenerateAccountID added in v1.0.0

func (h *StandardLibraryHandler) GenerateAccountID(address common.Address) (uint64, error)

func (*StandardLibraryHandler) GetAccountAvailableBalance added in v1.0.0

func (*StandardLibraryHandler) GetAccountAvailableBalance(_ common.Address) (uint64, error)

func (*StandardLibraryHandler) GetAccountBalance added in v1.0.0

func (*StandardLibraryHandler) GetAccountBalance(_ common.Address) (uint64, error)

func (*StandardLibraryHandler) GetAccountContractCode added in v1.0.0

func (*StandardLibraryHandler) GetAccountContractCode(_ common.AddressLocation) ([]byte, error)

func (*StandardLibraryHandler) GetAccountContractNames added in v1.0.0

func (*StandardLibraryHandler) GetAccountContractNames(_ common.Address) ([]string, error)

func (*StandardLibraryHandler) GetAccountKey added in v1.0.0

func (*StandardLibraryHandler) GetBlockAtHeight added in v1.0.0

func (*StandardLibraryHandler) GetBlockAtHeight(_ uint64) (block stdlib.Block, exists bool, err error)

func (*StandardLibraryHandler) GetCurrentBlockHeight added in v1.0.0

func (*StandardLibraryHandler) GetCurrentBlockHeight() (uint64, error)

func (*StandardLibraryHandler) GetStorageCapacity added in v1.0.0

func (*StandardLibraryHandler) GetStorageCapacity(_ common.Address) (uint64, error)

func (*StandardLibraryHandler) GetStorageUsed added in v1.0.0

func (*StandardLibraryHandler) GetStorageUsed(_ common.Address) (uint64, error)

func (*StandardLibraryHandler) Hash added in v1.0.0

func (*StandardLibraryHandler) InterpretContract added in v1.0.0

func (*StandardLibraryHandler) IsContractBeingAdded added in v1.0.0

func (h *StandardLibraryHandler) IsContractBeingAdded(common.AddressLocation) bool

func (*StandardLibraryHandler) NewOnEventEmittedHandler added in v1.0.0

func (h *StandardLibraryHandler) NewOnEventEmittedHandler() interpreter.OnEventEmittedFunc

func (*StandardLibraryHandler) ParseAndCheckProgram added in v1.0.0

func (*StandardLibraryHandler) ParseAndCheckProgram(_ []byte, _ common.Location, _ bool) (*interpreter.Program, error)

func (*StandardLibraryHandler) ProgramLog added in v1.0.0

func (*StandardLibraryHandler) ProgramLog(message string, locationRange interpreter.LocationRange) error

func (*StandardLibraryHandler) ReadRandom added in v1.0.0

func (h *StandardLibraryHandler) ReadRandom(p []byte) error

func (*StandardLibraryHandler) RecordContractRemoval added in v1.0.0

func (*StandardLibraryHandler) RecordContractRemoval(_ common.AddressLocation)

func (*StandardLibraryHandler) RecordContractUpdate added in v1.0.0

func (*StandardLibraryHandler) RemoveAccountContractCode added in v1.0.0

func (*StandardLibraryHandler) RemoveAccountContractCode(_ common.AddressLocation) error

func (*StandardLibraryHandler) RevokeAccountKey added in v1.0.0

func (*StandardLibraryHandler) RevokeAccountKey(_ common.Address, _ uint32) (*stdlib.AccountKey, error)

func (*StandardLibraryHandler) StartContractAddition added in v1.0.0

func (h *StandardLibraryHandler) StartContractAddition(common.AddressLocation)

func (*StandardLibraryHandler) TemporarilyRecordCode added in v1.0.0

func (*StandardLibraryHandler) TemporarilyRecordCode(_ common.AddressLocation, _ []byte)

func (*StandardLibraryHandler) UpdateAccountContractCode added in v1.0.0

func (*StandardLibraryHandler) UpdateAccountContractCode(_ common.AddressLocation, _ []byte) error

func (*StandardLibraryHandler) ValidatePublicKey added in v1.0.0

func (*StandardLibraryHandler) ValidatePublicKey(_ *stdlib.PublicKey) error

func (*StandardLibraryHandler) VerifySignature added in v1.0.0

func (*StandardLibraryHandler) VerifySignature(
	_ []byte,
	_ string,
	_ []byte,
	_ []byte,
	_ sema.SignatureAlgorithm,
	_ sema.HashAlgorithm,
) (
	bool,
	error,
)

Directories

Path Synopsis
* Cadence - The resource-oriented smart contract programming language * * Copyright Flow Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.
* Cadence - The resource-oriented smart contract programming language * * Copyright Flow Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL