Initial commit message
parents
Showing
.gitignore
0 → 100644
Nargo.toml
0 → 100644
Prover.toml
0 → 100644
README.md
0 → 100644
Verifier.toml
0 → 100644
contracts/plonk_vk.sol
0 → 100644
hardhat.config.ts
0 → 100644
package.json
0 → 100644
{ | ||
"name": "momiji", | ||
"version": "1.0.0", | ||
"description": "", | ||
"scripts": { | ||
"windows-compile": "nargo check && nargo compile p && nargo codegen-verifier && copy .\\contract\\plonk_vk.sol ..\\..\\contracts\\plonk_vk.sol", | ||
"compile": "nargo check && nargo compile main && nargo codegen-verifier && cp ./contract/plonk_vk.sol ./contracts/plonk_vk.sol", | ||
"test": "npx hardhat test ./test/transfer.test.mjs" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://open.offshift.io" | ||
}, | ||
"author": "", | ||
"license": "MIT", | ||
"homepage": "https://open.offshift.io/", | ||
"devDependencies": { | ||
"@ethersproject/abi": "^5.6.4", | ||
"@ethersproject/providers": "^5.6.8", | ||
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2", | ||
"@nomicfoundation/hardhat-network-helpers": "^1.0.3", | ||
"@nomicfoundation/hardhat-toolbox": "^1.0.2", | ||
"@nomiclabs/hardhat-ethers": "^2.2.2", | ||
"@nomiclabs/hardhat-etherscan": "^3.1.0", | ||
"@openzeppelin/hardhat-upgrades": "^1.19.1", | ||
"@typechain/hardhat": "^6.1.2", | ||
"@types/memdown": "^3.0.0", | ||
"@types/mocha": "^9.1.1", | ||
"chai": "^4.3.6", | ||
"ethers": "^5.6.9", | ||
"hardhat": "^2.10.1", | ||
"hardhat-gas-reporter": "^1.0.8", | ||
"snarkjs": "^0.4.24", | ||
"solidity-coverage": "^0.7.21", | ||
"ts-node": "^10.9.1", | ||
"typechain": "^8.1.0", | ||
"typescript": "^4.7.4" | ||
}, | ||
"dependencies": { | ||
"@aztec/bb.js": "0.3.3", | ||
"@chainlink/contracts": "^0.6.1", | ||
"@openzeppelin/contracts": "^4.7.1", | ||
"@typechain/ethers-v5": "^10.1.0", | ||
"@uniswap/v3-core": "^1.0.1", | ||
"bigint-buffer": "^1.1.5", | ||
"circomlibjs": "^0.1.7", | ||
"keccak256": "^1.0.6", | ||
"sequelize": "^6.32.0", | ||
"sqlite3": "^5.1.6" | ||
} | ||
} |
src/main.nr
0 → 100644
test/transfer.test.mjs
0 → 100644
tsconfig.json
0 → 100644
utils/MerkleTree.mjs
0 → 100644
utils/test_helpers.mjs
0 → 100644
Please register or sign in to comment