From d052312e5527a31517e6f851c06e2d3ad29ef048 Mon Sep 17 00:00:00 2001 From: Narb Date: Sun, 10 Sep 2023 16:27:25 -0700 Subject: [PATCH] Adds definitions for polygon and digital marketplace (#186) --- resources/master_term_bank_en.csv | 4 +++- src/filter/termConfig.ts | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/master_term_bank_en.csv b/resources/master_term_bank_en.csv index b4528ae..6c8987e 100644 --- a/resources/master_term_bank_en.csv +++ b/resources/master_term_bank_en.csv @@ -62,4 +62,6 @@ application/json,centralized,"The term centralized is often used to describe a g application/json,sharding,"Sharding is typically regarded as a database optimization technique where tables are partitioned (into shards) and distributed among multiple database instances to increase overall throughput. This technique can also be applied to blockchains where nodes in a given network hold parts of the overall chain so that each shard can work in parallel to reach consensus in a more load balanced manner. This overall optimization in the consensus mechanism of the chain theoretically leads to an overall increase in network transaction speeds.",en,GLOSSETA-PROD,general application/json,airdrops,"Airdrops are essentially when creators of a project send free coins or tokens to the wallets of users of their products to raise awareness around the project.",en,GLOSSETA-PROD,general application/json,zero-knowledge proof,"A zero-knowledge proof is a mathematical technique enabling an entity (prover) to prove a statement is true to another (verifier) without revealing any additional information other than what's needed to prove the statement. Zero-knowledge proofs have a growing popularity in the web3 space, in particular with enhancing blockchain scalability.",en,GLOSSETA-PROD,general -application/json,digital identity,"Digital Identity refers to the virtual representation of an individual or entity's unique characteristics, information, and activities online. It is the digital equivalent of one's identity in the real world, used for various purposes such as authentication, authorization, and personalization in digital interactions.",en,GLOSSETA-PROD,general \ No newline at end of file +application/json,digital identity,"Digital Identity refers to the virtual representation of an individual or entity's unique characteristics, information, and activities online. It is the digital equivalent of one's identity in the real world, used for various purposes such as authentication, authorization, and personalization in digital interactions.",en,GLOSSETA-PROD,general +application/json,digital marketplace,"Digital marketplaces are online stores where users can buy and sell digital goods and services (e.g. NFTs).",en,GLOSSETA-PROD,general +application/json,polygon,"Polygon is a layer 2 blockchain that sits on top of Ethereum whose purpose is to make it faster and cheaper to use.",en,GLOSSETA-PROD,protocol \ No newline at end of file diff --git a/src/filter/termConfig.ts b/src/filter/termConfig.ts index d9fb85a..f701ec4 100644 --- a/src/filter/termConfig.ts +++ b/src/filter/termConfig.ts @@ -66,5 +66,7 @@ export const termFilter = [ "sharding", "airdrops", "zero-knowledge proof", - "digital identity" + "digital identity", + "digital marketplace", + "polygon" ]; \ No newline at end of file