evm_signatures_authorized_operations

List of operations which require the evm_signatures operation. Generally, these operations will have a call to verify_signers inside.

Standard FT4 operations which require evm_signatures do not need to be added here.

If a transaction contains evm_signatures, but this operation is not used to authorize an operation in this list, the transaction will fail. This prevents users from adding a lot of signatures to make the transaction arbitrarily heavy.

Defined in the chromia.yml file as:

  evm_signatures_authorized_operations:
- op_1
- op_2

The value of this field will be ["op_1", "op_2"].to_gtv()

When parsing it, it will be converted to set<text>, which means duplicate entries will make the parsing fail