rpc

package
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: Nov 30, 2022 License: LGPL-3.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var HOST = os.Getenv("HOST")

Functions

func DeployTestContract

func DeployTestContract(t *testing.T, addr []byte) (hexutil.Bytes, map[string]interface{})

deployTestContract deploys a contract that emits an event in the constructor

func DeployTestContractWithFunction

func DeployTestContractWithFunction(t *testing.T, addr []byte) hexutil.Bytes

func GetAddress

func GetAddress() ([]byte, error)

func GetGasPrice

func GetGasPrice(t *testing.T) string

func GetNonce

func GetNonce(t *testing.T, block string) hexutil.Uint64

func GetTransactionReceipt

func GetTransactionReceipt(t *testing.T, hash hexutil.Bytes) map[string]interface{}

func HexToBigInt

func HexToBigInt(t *testing.T, in string) *big.Int

turns a 0x prefixed hex string to a big.Int

func SendTestTransaction

func SendTestTransaction(t *testing.T, addr []byte) hexutil.Bytes

sendTestTransaction sends a dummy transaction

func UnlockAllAccounts

func UnlockAllAccounts(t *testing.T)

func WaitForReceipt

func WaitForReceipt(t *testing.T, hash hexutil.Bytes) map[string]interface{}

Types

type Error

type Error struct {
	Code    int         `json:"code"`
	Message string      `json:"message"`
	Data    interface{} `json:"data,omitempty"`
}

type Request

type Request struct {
	Version string      `json:"jsonrpc"`
	Method  string      `json:"method"`
	Params  interface{} `json:"params"`
	ID      int         `json:"id"`
}

func CreateRequest

func CreateRequest(method string, params interface{}) Request

type Response

type Response struct {
	Error  *Error          `json:"error"`
	ID     int             `json:"id"`
	Result json.RawMessage `json:"result,omitempty"`
}

func Call

func Call(t *testing.T, method string, params interface{}) *Response

func CallWithError

func CallWithError(method string, params interface{}) (*Response, error)

func CallWithSleep

func CallWithSleep(t *testing.T, method string, params interface{}, sleep time.Duration) *Response

Jump to

Keyboard shortcuts

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