-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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
46
{
"name": "imua-contracts",
"version": "1.0.0",
"description": "The imua-contracts repository contains a set of smart contracts deployed on both Imuachain and the target client chains, which facilitate assets deposit and withdrawal, cross-chain communication, and restaking operations for native assets and liquid staking tokens (LSTs), ensuring secure interactions and efficient management of restaked assets.",
"main": "hardhat.config.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "hardhat test",
"deploy:utxogateway": "hardhat run script/hardhat/deploy-and-setup-utxogateway.script.js --network imuachain_localnet"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.2",
"@evmos/address-converter": "^0.1.9",
"@evmos/evmosjs": "github:evmos/evmosjs#main",
"@evmos/proto": "^0.2.1",
"@nomicfoundation/hardhat-foundry": "^1.1.3",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"axios": "^1.7.9",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^6.1.5",
"dotenv": "^16.4.7",
"ecpair": "^2.1.0",
"esm": "^3.2.25",
"ethereumjs-wallet": "^1.0.2",
"hardhat": "^2.22.17",
"mocha": "^10.2.0",
"solhint": "^5.0.1",
"tiny-secp256k1": "^2.2.3"
},
"dependencies": {
"@openzeppelin/upgrades-core": "^1.40.0",
"ethers": "^6.9.0",
"hardhat-gas-reporter": "^1.0.9"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}