supportedSeps

Returns the list of supported SEP (Stellar Ecosystem Proposal) numbers from the contract metadata.

This property parses the "sep" meta entry which contains comma-separated SEP numbers (e.g., "1, 10, 24"). The values are parsed, trimmed, deduplicated, and returned as a list.

Example:

val contractInfo = SorobanContractParser.parseContractByteCode(wasmBytes)
val seps = contractInfo.supportedSeps // e.g., ["1", "10", "24"]

Return

List of SEP numbers as strings, or empty list if no "sep" meta entry exists