sign

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

Add the given list of keypairs as signers of this test transaction builder.

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

Since

0.10.4

Parameters

keypairs

the list of keypairs with which to sign this transaction


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

Add the given keypairs as signers of this test transaction builder.

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

Since

0.10.4

Parameters

keypairs

the keypairs with which to sign this transaction


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

Add the given list of private keys as signers of this test transaction builder.

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

Since

0.10.4

Parameters

privkeys

the list of private keys with which to sign this transaction


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

Add the given private keys as signers of this test transaction builder.

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

Since

0.10.4

Parameters

privkeys

the private keys with which to sign this transaction