From 0ac1b899f0b17e68a7836e7a927345d7e96342dd Mon Sep 17 00:00:00 2001 From: techcoderx Date: Sat, 24 Dec 2022 21:48:02 +0800 Subject: [PATCH] update spk discount --- client/uploader.html | 2 +- config_example.json | 2 +- docs/ConfigDocs.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/uploader.html b/client/uploader.html index 593caaae..45900c35 100644 --- a/client/uploader.html +++ b/client/uploader.html @@ -225,7 +225,7 @@

Important Notice

  1. Instead of using the tusd upload endpoint operated by OneLoveIPFS, we are required to use the official APIs operated by 3Speak core team.
  2. An 11.5% fee will be levied on HIVE post rewards for all 3Speak video uploads. This fee is imposed by 3Speak team, OneLoveIPFS does not have control over it.
  3. -
  4. Due to the mandatory outsourcing of video storage and encoding, these files will only consume up to 25% of GBDays that would otherwise be consumed if the same file was pinned normally on our IPFS nodes. In an event of file unavailability on 3Speak's IPFS storage servers for longer than 24 hours, these files may consume the full GBDays amount.
  5. +
  6. Due to the mandatory outsourcing of video storage and encoding, these files will only consume up to 50% of GBDays that would otherwise be consumed if the same file was pinned normally on our IPFS nodes. In an event of file unavailability on 3Speak's IPFS storage servers for longer than 24 hours, these files may consume the full GBDays amount.
  7. OneLoveIPFS is not responsible for any issues arising from the use of 3Speak APIs, including but not limited to file uploads, quality of video encoding outputs, video playability or censorship (of any kind) on 3Speak.
  8. Getting the resulting files pinned on our IPFS nodes may take longer than usual as we need to fetch them from 3Speak's IPFS nodes which are subject to availability.
diff --git a/config_example.json b/config_example.json index 2cdb3be8..0429f675 100644 --- a/config_example.json +++ b/config_example.json @@ -29,7 +29,7 @@ }, "Discounts": { - "SPK": 0.25 + "SPK": 0.5 }, "ClientConfig": { diff --git a/docs/ConfigDocs.md b/docs/ConfigDocs.md index 0562001a..26d222d9 100644 --- a/docs/ConfigDocs.md +++ b/docs/ConfigDocs.md @@ -46,11 +46,11 @@ Configures application-specific pinning service. #### Discounts Configures usage multipliers for files with certain discount labels. JSON object with key (discount label): value (multiplier). -For example, files with `SPK` discount label to be billed at 25% of the hosting cost of the file (75% discount). +For example, files with `SPK` discount label to be billed at 50% of the hosting cost of the file (50% discount). ``` "Discounts": { - "SPK": 0.25 + "SPK": 0.5 }, ```