From 7dd639aef9dd81a9796a12c69eb0065c78c2fb67 Mon Sep 17 00:00:00 2001 From: philipliu Date: Thu, 5 Dec 2024 15:08:13 -0500 Subject: [PATCH] Add SEP-45 fields --- ecosystem/sep-0001.md | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/ecosystem/sep-0001.md b/ecosystem/sep-0001.md index d287bab37..edc6d8368 100644 --- a/ecosystem/sep-0001.md +++ b/ecosystem/sep-0001.md @@ -6,8 +6,8 @@ Title: Stellar Info File Author: stellar.org Status: Active Created: 2017-10-30 -Updated: 2024-02-01 -Version: 2.6.0 +Updated: 2024-12-05 +Version: 2.7.0 ``` ## Simple Summary @@ -58,22 +58,24 @@ Documentation sections. These are global fields in the `stellar.toml` file. -| Field | Requirements | Description | -| ----------------------- | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | -| VERSION | string | The version of SEP-1 your `stellar.toml` adheres to. This helps parsers know which fields to expect. | -| NETWORK_PASSPHRASE | string | The passphrase for the specific [Stellar network](https://www.stellar.org/developers/guides/concepts/networks.html) this infrastructure operates on | -| FEDERATION_SERVER | uses `https://` | The endpoint for clients to resolve stellar addresses for users on your domain via [SEP-2](sep-0002.md) Federation Protocol | -| AUTH_SERVER | uses `https://` | (deprecated) The endpoint used for [SEP-3](sep-0003.md) Compliance Protocol | -| TRANSFER_SERVER | uses `https://` | The server used for [SEP-6](sep-0006.md) Anchor/Client interoperability | -| TRANSFER_SERVER_SEP0024 | uses `https://` | The server used for [SEP-24](sep-0024.md) Anchor/Client interoperability | -| KYC_SERVER | uses `https://` | The server used for [SEP-12](sep-0012.md) Anchor/Client customer info transfer | -| WEB_AUTH_ENDPOINT | uses `https://` | The endpoint used for [SEP-10 Web Authentication](sep-0010.md) | -| SIGNING_KEY | Stellar public key | The signing key is used for [SEP-3](sep-0003.md) Compliance Protocol (deprecated) and [SEP-10](sep-0010.md) Authentication Protocol | -| HORIZON_URL | url | Location of public-facing Horizon instance (if you offer one) | -| ACCOUNTS | list of `G...` strings | A list of Stellar accounts that are controlled by this domain | -| URI_REQUEST_SIGNING_KEY | Stellar public key | The signing key is used for [SEP-7](sep-0007.md) delegated signing | -| DIRECT_PAYMENT_SERVER | uses `https://` | The server used for receiving [SEP-31](sep-0031.md) direct fiat-to-fiat payments. Requires [SEP-12](sep-0012.md) and hence a `KYC_SERVER` TOML attribute. | -| ANCHOR_QUOTE_SERVER | uses `https://` | The server used for receiving [SEP-38](sep-0038.md) requests. | +| Field | Requirements | Description | +| ------------------------- | ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- | +| VERSION | string | The version of SEP-1 your `stellar.toml` adheres to. This helps parsers know which fields to expect. | +| NETWORK_PASSPHRASE | string | The passphrase for the specific [Stellar network](https://www.stellar.org/developers/guides/concepts/networks.html) this infrastructure operates on | +| FEDERATION_SERVER | uses `https://` | The endpoint for clients to resolve stellar addresses for users on your domain via [SEP-2](sep-0002.md) Federation Protocol | +| AUTH_SERVER | uses `https://` | (deprecated) The endpoint used for [SEP-3](sep-0003.md) Compliance Protocol | +| TRANSFER_SERVER | uses `https://` | The server used for [SEP-6](sep-0006.md) Anchor/Client interoperability | +| TRANSFER_SERVER_SEP0024 | uses `https://` | The server used for [SEP-24](sep-0024.md) Anchor/Client interoperability | +| KYC_SERVER | uses `https://` | The server used for [SEP-12](sep-0012.md) Anchor/Client customer info transfer | +| WEB_AUTH_ENDPOINT | uses `https://` | The endpoint used for [SEP-10 Web Authentication](sep-0010.md) | +| WEB_AUTH_ENDPOINT_SEP0045 | uses `https://` | The endpoint used for [SEP-45 Web Authentication](sep-0045.md) | +| WEB_AUTH_CONTRACT_ID | Soroban contract ID | The web authentication contract ID for [SEP-45 Web Authentication](sep-0045.md) | +| SIGNING_KEY | Stellar public key | The signing key is used for [SEP-3](sep-0003.md) Compliance Protocol (deprecated) and [SEP-10](sep-0010.md) Authentication Protocol | +| HORIZON_URL | url | Location of public-facing Horizon instance (if you offer one) | +| ACCOUNTS | list of `G...` strings | A list of Stellar accounts that are controlled by this domain | +| URI_REQUEST_SIGNING_KEY | Stellar public key | The signing key is used for [SEP-7](sep-0007.md) delegated signing | +| DIRECT_PAYMENT_SERVER | uses `https://` | The server used for receiving [SEP-31](sep-0031.md) direct fiat-to-fiat payments. Requires [SEP-12](sep-0012.md) and hence a `KYC_SERVER` TOML attribute. | +| ANCHOR_QUOTE_SERVER | uses `https://` | The server used for receiving [SEP-38](sep-0038.md) requests. | ### Organization Documentation