-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.69 KB
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
{
"name": "ccip-ton-starter-kit",
"type": "module",
"scripts": {
"update-submodules": "git submodule update --remote",
"compile:evm": "npx hardhat compile",
"deploy:evm:receiver": "npm run compile:evm && tsx scripts/deploy/deployEVMReceiver.ts",
"deploy:ton:receiver": "tsx scripts/deploy/deployTONReceiver.ts --contract MessageReceiver",
"deploy:ton:receiver:minimal": "tsx scripts/deploy/deployTONReceiver.ts --contract MinimalReceiver",
"deploy:ton:receiver:validate-and-confirm": "tsx scripts/deploy/deployTONReceiver.ts --contract ReceiverWithValidateAndConfirm",
"deploy:ton:sender": "tsx scripts/deploy/deployTONSender.ts",
"evm2ton:send": "npm run compile:evm && tsx scripts/evm2ton/sendMessage.ts",
"ton2evm:send": "tsx scripts/ton2evm/sendMessage.ts",
"utils:checkEVM": "tsx scripts/ton2evm/checkMessageOnEVM.ts",
"utils:checkTON": "tsx scripts/evm2ton/checkMessageOnTON.ts",
"utils:checkLastTxs": "tsx scripts/ton-utils/checkLastTxs.ts",
"utils:convertAddress": "tsx scripts/ton-utils/convertAddress.ts"
},
"dependencies": {
"@chainlink/contracts-ccip": "1.6.1",
"@openzeppelin/contracts": "^5.0.2",
"@ton/core": "^0.62.0",
"@ton/crypto": "^3.3.0",
"@ton/ton": "^16.0.0",
"@types/node": "^24.9.1",
"@types/yargs": "^17.0.35",
"dotenv": "^17.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^3.0.12",
"@tact-lang/compiler": "^1.6.13",
"@ton-community/func-js": "^0.11.0",
"@ton/blueprint": "^0.41.0",
"@ton/tolk-js": "^1.1.0",
"ethers": "^6.15.0",
"hardhat": "^3.0.7",
"tsx": "^4.20.6"
}
}