-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "merkle-tree-payment-pool",
"description": "This is an implementation of a Merkle Tree based payment pool in Solidity for ERC-20 tokens. This project was inspired by this Ethereum research post: https://ethresear.ch/t/pooled-payments-scaling-solution-for-one-to-many-transactions/590. A longer description around the motivations behind this project is available here: https://medium.com/cardstack/scalable-payment-pools-in-solidity-d97e45fc7c5c. This project includes a payment pool smart contract that leverages Merkle Trees. Also included is a JS lib to create Merkle Trees, derive Merkle roots, and Merkle proofs that have metadata attached to the proofs that aid this smart contract in managing the payment pool.",
"version": "1.0.1",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cardstack/merkle-tree-payment-pool.git"
},
"keywords": [
"ethereum",
"solidity",
"merkle-tree",
"payment-pool"
],
"author": "Hassan Abdel-Rahman",
"homepage": "https://github.com/cardstack/merkle-tree-payment-pool#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/cardstack/merkle-tree-payment-pool/issues"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"@openzeppelin/contracts": "2.5.0",
"core-js": "^3.12.1",
"ethereumjs-util": "^7.0.10",
"lodash": "^4.17.4",
"regenerator-runtime": "^0.13.7",
"truffle": "^5.3.6",
"web3-utils": "^1.3.6"
},
"volta": {
"node": "14.16.1",
"yarn": "1.22.10"
},
"dependencies": {}
}