Skip to content

TxnVerificationTests

TxnVerificationTests: Object

Type declaration

greaterThan?

optional greaterThan: IntLike

assert that the value is greater than the given value

greaterThanEqualTo?

optional greaterThanEqualTo: IntLike

assert that the value is greater than or equal to the given value

includedIn?

optional includedIn: (IntLike | BytesLike)[]

assert that the value is included in the given array. MUST be an array literal

lessThan?

optional lessThan: IntLike

assert that the value is less than the given value

lessThanEqualTo?

optional lessThanEqualTo: IntLike

assert that the value is less than or equal to the given value

not?

optional not: IntLike | BytesLike

assert that the value is equal to the given value

notIncludedIn?

optional notIncludedIn: (IntLike | BytesLike)[]

assert that the value is not included in the given array. MUST be an array literal

Source

types/global.d.ts:260