encode

package
v0.1.63 Latest Latest
Warning

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

Go to latest
Published: Nov 14, 2024 License: AGPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ABIEncodeCmd = &cobra.Command{
	Use:   "encode [function signature] [args...]",
	Short: "ABI encodes a function signature and the inputs",
	Long:  "[function-signature] is required and is a fragment in the form <function name>(<types...>). If the function signature has parameters, then those values would have to be passed as arguments after the function signature.",
	Args:  cobra.MinimumNArgs(1),
	PreRunE: func(cmd *cobra.Command, args []string) error {
		functionSignature = args[0]
		if len(args) > 1 {
			functionInputs = args[1:]
		}

		return nil
	},
	RunE: func(cmd *cobra.Command, args []string) error {
		fullEncoding, err := abi.AbiEncode(functionSignature, functionInputs)
		if err != nil {
			return err
		}
		fmt.Println(fullEncoding)

		return nil
	},
}

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

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