pub async fn build_transaction(
    script: Vec<u8>,
    arguments: Vec<Vec<u8>>,
    reference_block_id: Vec<u8>,
    gas_limit: u64,
    proposer: TransactionProposalKey,
    authorizers: Vec<String>,
    payer: String
) -> Result<Transaction, Box<dyn Error>>
Expand description

build_transaction will construct a flow::Transaction with the provided script and arguments. See the Argument struct for details on how to construct arguments.