Skip to content

Commit 5e5dc6b

Browse files
committed
fix: duplicate entry check
1 parent 7e87409 commit 5e5dc6b

File tree

3 files changed

+952
-602
lines changed

3 files changed

+952
-602
lines changed

data/terms.json

-20
Original file line numberDiff line numberDiff line change
@@ -415,10 +415,6 @@
415415
"term": "full node",
416416
"meaning": "A full node is a blockchain node that verifies and relays transactions while also storing the blockchain's entire history."
417417
},
418-
{
419-
"term": "full node",
420-
"meaning": "This blockchain node verifies and relays transactions while also storing the blockchain's entire history."
421-
},
422418
{
423419
"term": "fungible",
424420
"meaning": "Fungible is a term used to describe a token of same kind that can be transferred from one address to another."
@@ -427,10 +423,6 @@
427423
"term": "game fi",
428424
"meaning": "GameFi is a fusion of two words, game and finance. GameFi to gaming on the blockchain that offers economic incentives to players. Example: Play-to-Earn"
429425
},
430-
{
431-
"term": "gas fee",
432-
"meaning": "The is the transaction fee users pay to miners on a blockchain protocol to get their transaction included in the block are referred to as 'gas fees.'"
433-
},
434426
{
435427
"term": "gas fee",
436428
"meaning": "Gas fee is the transaction fee users pay to miners on a blockchain protocol to get their transaction included in the block are referred to as 'gas fees.'"
@@ -519,10 +511,6 @@
519511
"term": "l1",
520512
"meaning": "L1 is a trustable P2P distributed network formed by untrusted nodes implementing a consensus algorithm."
521513
},
522-
{
523-
"term": "l2",
524-
"meaning": "Distributed system complimenting L1 providing fast and scalable transaction processing."
525-
},
526514
{
527515
"term": "l2",
528516
"meaning": "L2 is a distributed system complimenting L1 providing fast and scalable transaction processing."
@@ -591,10 +579,6 @@
591579
"term": "node",
592580
"meaning": "A node is any device connecting to a blockchain network is referred to as a node. Different nodes have different levels of responsibility and may be used to validate transactions, maintain the blockchain's history, transmit data, and perform other tasks."
593581
},
594-
{
595-
"term": "node",
596-
"meaning": "Any device connecting to a blockchain network is referred to as a node. Different nodes have different levels of responsibility and may be used to validate transactions, maintain the blockchain's history, transmit data, and perform other tasks."
597-
},
598582
{
599583
"term": "non-fungible token",
600584
"meaning": "A digital certificate of authenticity, or NFT, is used to assign and verify a single digital or physical item ownership. NFTs are not convertible with each other, unlike fungible tokens."
@@ -799,10 +783,6 @@
799783
"term": "wallet",
800784
"meaning": "A wallet is a software application or hardware device that holds the private keys to blockchain assets and accounts. A blockchain wallet does not contain currencies or tokens themselves, Instead, they save the private key that certifies a digital asset's ownership."
801785
},
802-
{
803-
"term": "wallet",
804-
"meaning": "This software application or hardware device holds the private keys to blockchain assets and accounts. It is a digital wallet that allows users to store and manage their cryptocurrencies."
805-
},
806786
{
807787
"term": "wallet address",
808788
"meaning": "Like a bank account number, a wallet address is an alphanumeric identifier that serves as the address for a blockchain wallet. Other users can send digital assets to your wallet using your public key, but the contents of your wallet are only accessible using your private key."

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,14 @@
3434
"devDependencies": {
3535
"@babel/preset-env": "^7.19.3",
3636
"eslint": "^8.12.0",
37-
"husky": "^8.0.3",
37+
"husky": "4",
3838
"jest": "^29.1.2",
39+
"lint-staged": "^13.1.0",
3940
"nodemon": "^2.0.15"
4041
},
4142
"husky": {
4243
"hooks": {
43-
"pre-commit": "yarn precommit"
44+
"pre-commit": "yarn precommit && yarn test"
4445
}
4546
},
4647
"lint-staged": {

0 commit comments

Comments
 (0)