sign

function sign(keypairs: list<rell.test.keypair>): rell.test.tx

Create a test transaction builder containing this test operation call, and add the keypairs in the given list as signers of the test transaction.

When the returned test transaction builder is built, the transaction will be signed with all keypairs in the list.

Return

a test transaction builder with this test operation call and given signers

Since

0.10.4

Parameters

keypairs

the list of keypairs with which to sign the returned transaction


function sign(keypairs: rell.test.keypair...): rell.test.tx

Create a test transaction builder containing this test operation call, and add the given keypairs as signers of the test transaction.

When the returned test transaction builder is built, the transaction will be signed with all given keypairs.

Return

a test transaction builder with this test operation call and given signers

Since

0.10.4

Parameters

keypairs

the keypairs with which to sign the returned transaction


function sign(privkeys: list<byte_array>): rell.test.tx

Create a test transaction builder containing this test operation call, and add the private keys in the given list as signers of the test transaction.

When the returned test transaction builder is built, the transaction will be signed with all private keys in the list.

Return

a test transaction builder with this test operation call and given signers

Since

0.10.4

Parameters

privkeys

the list of private keys with which to sign the returned transaction


function sign(privkeys: byte_array...): rell.test.tx

Create a test transaction builder containing this test operation call, and add the given private keys as signers of the test transaction.

When the test transaction builder is built, the transaction will be signed with all given private keys.

Return

a test transaction builder with this test operation call and given signers

Since

0.10.4

Parameters

privkeys

the private keys with which to sign the returned transaction