Code Monkey home page Code Monkey logo

Comments (2)

maoueh avatar maoueh commented on August 17, 2024

https://github.com/eoscanada/eos-go/blob/develop/example_api_transfer_eos_test.go#L38 shows a transfer action, should be a good starting point.

Provide an example and I could help further.

from eos-go.

uo257724 avatar uo257724 commented on August 17, 2024

The code I'm using:

        transferPermissionLevel, err := eos.NewPermissionLevel(from + "@active")
	if err != nil {
		panic("Error creating permission level")
	}	
         // Fills in the transaction header information like ref block, delays and expiration is set to 30s
	txOpts := &eos.TxOptions{}
	err = txOpts.FillFromChain(context.Background(), api)
	if err != nil {
		panic("Error filling tx options")
	}

	trx := eos.NewTransaction([]*eos.Action{
		{
			Account:       eos.AN(contractName),  // The contract that will execute the action
			Name:          eos.ActN("addopname"), // The action name
			Authorization: []eos.PermissionLevel{transferPermissionLevel},
			ActionData: eos.NewActionData(OperationNamePost{
				op_id:         1,                 //eos.Uint64
				op_name:       "aaa",             //string
				fields:        fields,            //[]string
				types:         types,             //[]string
				offchain_data: eos.Checksum256{}, //eos.Checksum256
			}),
		},
		}, txOpts)

		// keyBag := eos.NewKeyBag()
		keyBag := &eos.KeyBag{}
		err = keyBag.ImportPrivateKey(context.Background(), fromPrivateKey)
		if err != nil {
			panic(fmt.Errorf("import private key: %w", err))
		}
		api.SetSigner(keyBag)

		_, packedTx, err := api.SignTransaction(context.Background(), trx, txOpts.ChainID, eos.CompressionNone)
		if err != nil {
			panic(fmt.Errorf("sign transaction: %w", err))
		}
		response, err := api.PushTransaction(context.Background(), packedTx)
		if err != nil {
			panic(fmt.Errorf("push transaction: %w", err))
		}

		fmt.Printf("Transaction [%s] submitted to the network succesfully.\n", hex.EncodeToString(response.Processed.ID))

and the error I'm getting is this:
sign transaction: get_required_keys: Internal Service Error: Invalid packed transaction: Failed to deserialize data for dopcontract:addopname: Failed to deserialize variant: Invalid transaction

Also, the struct i use for the transaction, have the fields and types that are in the transaction object.

I was following this example (link) but i have made some changes looking others examples.

Thanks in advance.

from eos-go.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.