diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ed23f0..29046e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,6 +76,7 @@ jobs: use-quiet-mode: no use-verbose-mode: yes check-modified-files-only: yes + base-branch: main codespell: name: CodeSpell diff --git a/SIPS/sip-7.md b/SIPS/sip-7.md index 235c442..2223618 100644 --- a/SIPS/sip-7.md +++ b/SIPS/sip-7.md @@ -103,6 +103,8 @@ If the zone or contract offerer allows for active signers to interact with the z The `context` argument will be populated based on the "substandards" specified by the zone or contract offerer; these substandards will be encoded in accordance with SIP-6 versioning with the assumption that all necessary data is to be treated as "variable" data arrays. The ordering for each encoded data segment included as part of context, supplied as part of the server API request, and returned as part of the server API response will be dictated by the order that the zone or contract offerer returns the substandard IDs. +If a substandard is being used the context MUST start with a SIP-7 byte identifying the substandard ID below. The byte SHOULD be 1-indexed, but for gas efficiency reasons, 00 MAY also be used as an alias to reference substandard ID 1. If no substandard is used there MUST be no substandard version byte or additional substandard data provided. + Initial substandards include: | substandard ID | description | decoding scheme | substandard request data supplied to API | substandard response data returned from API | | -------------- | --------------------------------------------------------- | ----------------------------------------------- | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | diff --git a/config/mlc_config.json b/config/mlc_config.json new file mode 100644 index 0000000..026f3cb --- /dev/null +++ b/config/mlc_config.json @@ -0,0 +1,15 @@ +{ + "ignorePatterns": [ + "[`]*csl-json" + ], + "replacementPatterns": [ + { + "pattern": "^/", + "replacement": "/github/workspace/" + } + ], + "aliveStatusCodes": [ + 200, + 429 + ] +} \ No newline at end of file