github.com/koko1123/flow-go-1@v0.29.6/engine/access/rest/models/model_transactions_body.go (about) 1 /* 2 * Access API 3 * 4 * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) 5 * 6 * API version: 1.0.0 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 package models 10 11 type TransactionsBody struct { 12 // Base64 encoded content of the Cadence script. 13 Script string `json:"script"` 14 // An array containing arguments each encoded as Base64 passed in the [JSON-Cadence interchange format](https://docs.onflow.org/cadence/json-cadence-spec/). 15 Arguments []string `json:"arguments"` 16 ReferenceBlockId string `json:"reference_block_id"` 17 // The limit on the amount of computation a transaction is allowed to preform. 18 GasLimit string `json:"gas_limit"` 19 Payer string `json:"payer"` 20 ProposalKey *ProposalKey `json:"proposal_key"` 21 Authorizers []string `json:"authorizers"` 22 PayloadSignatures []TransactionSignature `json:"payload_signatures"` 23 EnvelopeSignatures []TransactionSignature `json:"envelope_signatures"` 24 }