-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 2.78 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
47
48
49
50
51
52
53
54
{
"name": "layerzero-onft-v1-utils",
"version": "1.0.0",
"description": "Utilities for LayerZero's ONFT V1.",
"author": "Mido Trinh (trungtt198x)",
"license": "MIT",
"scripts": {
"clean": "rimraf artifacts cache typechain-types",
"compile": "yarn clean && npx hardhat compile",
"deploy-erc721-mock-smr-testnet": "npx hardhat run scripts/deploy_erc721.ts --network shimmerEvmTestnet",
"deploy-proxy-onft-smr-testnet": "npx hardhat run scripts/deploy_proxy_onft721.ts --network shimmerEvmTestnet",
"deploy-onft-bnb-testnet": "npx hardhat run scripts/deploy_onft721.ts --network bnbTestnet",
"set-remote-proxy-onft-smr-testnet": "export isForProxy=true && npx hardhat run scripts/set_trusted_remote.ts --network shimmerEvmTestnet",
"set-remote-onft-bnb-testnet": "export isForProxy=false && npx hardhat run scripts/set_trusted_remote.ts --network bnbTestnet",
"set-min-dest-gas-proxy-onft-smr-testnet": "export isForProxy=true && npx hardhat run scripts/set_min_destination_gas.ts --network shimmerEvmTestnet",
"set-min-dest-gas-onft-bnb-testnet": "export isForProxy=false && npx hardhat run scripts/set_min_destination_gas.ts --network bnbTestnet",
"set-batch-size-limit-proxy-onft-smr-testnet": "export isForProxy=true && npx hardhat run scripts/set_batch_size_limit.ts --network shimmerEvmTestnet",
"set-batch-size-limit-onft-bnb-testnet": "export isForProxy=false && npx hardhat run scripts/set_batch_size_limit.ts --network bnbTestnet",
"send-onft-from-smr-testnet": "npx hardhat run scripts/send_onft.ts --network shimmerEvmTestnet",
"send-onft-back-from-bnb-testnet": "npx hardhat run scripts/send_onft_back.ts --network bnbTestnet"
},
"devDependencies": {
"@layerzerolabs/lz-v2-utilities": "^2.3.5",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.2",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/ignition-core": "^0.15.2",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.12.7",
"chai": "^4.2.0",
"ethers": "^6.12.1",
"hardhat": "^2.22.3",
"hardhat-gas-reporter": "^1.0.8",
"rimraf": "^5.0.5",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@ethersproject/solidity": "^5.7.0",
"@layerzerolabs/scan-client": "^0.0.8",
"@layerzerolabs/solidity-examples": "^1.1.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@openzeppelin/contracts": "^4.9.6",
"dotenv": "^16.1.4"
}
}