From 1d97db4b5908c30b74c6e93651c043db520918b1 Mon Sep 17 00:00:00 2001 From: Sergei Tikhomirov Date: Mon, 19 Aug 2024 11:02:55 +0200 Subject: [PATCH] raise max total rate limit to 160 msg/epoch --- standards/core/rln-contract.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/standards/core/rln-contract.md b/standards/core/rln-contract.md index daeeddb..a11bd61 100644 --- a/standards/core/rln-contract.md +++ b/standards/core/rln-contract.md @@ -46,15 +46,15 @@ The contract MUST provide the following functionalities: Contract parameters and their RECOMMENDED values for the initial mainnet deployment are as follows: -| Parameter | Symbol | Value | Units | -| ------------------------------------------- | --------- | ------- | -------------------- | -| Epoch length | `epoch` | `10` | minutes | -| Maximum total rate limit of all memberships | `R_{max}` | `20000` | messages per `epoch` | -| Minimal rate limit of one membership | `r_{min}` | `20` | messages per `epoch` | -| Membership price for `1` message per epoch | `p_u` | `0.05` | `USD` | -| Membership expiration term | `T` | `180` | days | -| Membership grace period | `G` | `30` | days | -| Accepted tokens | | `DAI` | | +| Parameter | Symbol | Value | Units | +| ------------------------------------------- | --------- | -------- | -------------------- | +| Epoch length | `epoch` | `10` | minutes | +| Maximum total rate limit of all memberships | `R_{max}` | `160000` | messages per `epoch` | +| Minimal rate limit of one membership | `r_{min}` | `20` | messages per `epoch` | +| Membership price for `1` message per epoch | `p_u` | `0.05` | `USD` | +| Membership expiration term | `T` | `180` | days | +| Membership grace period | `G` | `30` | days | +| Accepted tokens | | `DAI` | | The pricing function SHOULD be linear in the rate limit per epoch.