-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 3.39 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
55
56
57
58
59
60
{
"name": "oft-cc-script",
"version": "1.0.0",
"description": "oft-cc-script",
"scripts": {
"ora-eth-to-arbitrum": "export PATHWAY='ETHEREUM->ARBITRUM' && npx hardhat run scripts/send_via_oft_adapter.ts --network ethereum",
"ora-eth-to-base": "export PATHWAY='ETHEREUM->BASE' && npx hardhat run scripts/send_via_oft_adapter.ts --network ethereum",
"ora-eth-to-binance": "export PATHWAY='ETHEREUM->BINANCE' && npx hardhat run scripts/send_via_oft_adapter.ts --network ethereum",
"ora-eth-to-solana": "export PATHWAY='ETHEREUM->SOLANA' && npx hardhat run scripts/send_via_oft_adapter_sol.ts --network ethereum",
"ora-base-to-eth": "export PATHWAY='BASE->ETHEREUM' && npx hardhat run scripts/send_via_oft.ts --network base",
"ora-base-to-binance": "export PATHWAY='BASE->BINANCE' && npx hardhat run scripts/send_via_oft.ts --network base",
"ora-base-to-arbitrum": "export PATHWAY='BASE->ARBITRUM' && npx hardhat run scripts/send_via_oft.ts --network base",
"ora-base-to-solana": "export PATHWAY='BASE->SOLANA' && npx hardhat run scripts/send_via_oft_sol.ts --network base",
"ora-arbitrum-to-base": "export PATHWAY='ARBITRUM->BASE' && npx hardhat run scripts/send_via_oft.ts --network arbitrum",
"ora-arbitrum-to-binance": "export PATHWAY='ARBITRUM->BINANCE' && npx hardhat run scripts/send_via_oft.ts --network arbitrum",
"ora-arbitrum-to-eth": "export PATHWAY='ARBITRUM->ETHEREUM' && npx hardhat run scripts/send_via_oft.ts --network arbitrum",
"ora-arbitrum-to-solana": "export PATHWAY='ARBITRUM->SOLANA' && npx hardhat run scripts/send_via_oft_sol.ts --network arbitrum",
"ora-binance-to-base": "export PATHWAY='BINANCE->BASE' && npx hardhat run scripts/send_via_oft.ts --network binance",
"ora-binance-to-arbitrum": "export PATHWAY='BINANCE->ARBITRUM' && npx hardhat run scripts/send_via_oft.ts --network binance",
"ora-binance-to-eth": "export PATHWAY='BINANCE->ETHEREUM' && npx hardhat run scripts/send_via_oft.ts --network binance",
"ora-binance-to-solana": "export PATHWAY='BINANCE->SOLANA' && npx hardhat run scripts/send_via_oft_sol.ts --network binance"
},
"devDependencies": {
"@ethersproject/bytes": "^5.7.0",
"@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.7",
"@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/abi": "^5.7.0",
"@layerzerolabs/lz-evm-messagelib-v2": "^2.3.15",
"@layerzerolabs/lz-evm-oapp-v2": "^2.3.15",
"@layerzerolabs/lz-evm-protocol-v2": "^2.3.15",
"@layerzerolabs/lz-v2-utilities": "2.3.15",
"@layerzerolabs/oft-evm": "^3.0.0",
"@layerzerolabs/scan-client": "^0.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.4.5",
"bs58": "6.0.0"
}
}