diff --git a/codex/contracts/deployment.nim b/codex/contracts/deployment.nim index 6ab654257..1fe3726d3 100644 --- a/codex/contracts/deployment.nim +++ b/codex/contracts/deployment.nim @@ -20,9 +20,10 @@ const knownAddresses = { "167005": { "Marketplace": Address.init("0x948CF9291b77Bd7ad84781b9047129Addf1b894F") }.toTable, - # Codex Testnet - Sept-2024 + + # Codex Testnet - Oct 08 2024 08:02:50 (+0 UTC) "789987": { - "Marketplace": Address.init("0xCDef8d6884557be4F68dC265b6bB2E3e52a6C9d6") + "Marketplace": Address.init("0xfE822Df439d987849a90B64a4C0e26a297DBD47F") }.toTable }.toTable diff --git a/openapi.yaml b/openapi.yaml index d29799a5a..e34c8b102 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -330,15 +330,15 @@ components: quotaMaxBytes: type: integer format: int64 - description: "Maximum storage space used by the node" + description: "Maximum storage space (in bytes) available for the node in Codex's local repository." quotaUsedBytes: type: integer format: int64 - description: "Amount of storage space currently in use" + description: "Amount of storage space (in bytes) currently used for storing files in Codex's local repository." quotaReservedBytes: type: integer format: int64 - description: "Amount of storage space reserved" + description: "Amount of storage reserved (in bytes) in the Codex's local repository for future use when storage requests will be picked up and hosted by the node using node's availabilities. This does not include the storage currently in use." servers: - url: "http://localhost:8080/api/codex/v1"