commit cb4c2af154376d72d1d042724462c6979558bb99 parent 7304ba72f0a1fee2dcb4b1f17f0180d6479a4ec4 Author: Florian Dold <florian@dold.me> Date: Mon, 5 May 2025 21:25:32 +0200 challenger: clarify setup request Diffstat:
| M | core/api-challenger.rst | | | 9 | +++++++-- |
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/core/api-challenger.rst b/core/api-challenger.rst @@ -181,10 +181,15 @@ Setup .. ts:def:: ChallengeSetupRequest - interface ChallengeSetupResponse { + interface ChallengeSetupRequest { // If true, the given address should not be edited. // Defaults to 'false' if not specified. - read_only: boolean; + read_only?: boolean; + + // Optional, additional fields to pre-populate + // the address to be validated. + // The fields depend on the challenger type. + { [x: string]: any }; }