-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
21 lines (21 loc) · 968 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "ccip-avalanche",
"version": "1.0.0",
"description": "Crossing over between subnets to blockchains via CCIP.",
"main": "index.js",
"repository": "https://github.com/smartcontractkit/ccip-avalanche.git",
"author": "Val <valentina.alexander@smartcontract.com>",
"license": "MIT",
"scripts": {
"setup": "forge install && forge build",
"test": "forge test --match-contract ReceiverTest -vv",
"sendMessage": "forge script ./script/Send.s.sol:SendMessage -vvv --broadcast --rpc-url ethereumSepolia --sig \"run(string)\" -- ",
"brokerMessage": "forge script ./script/Broker.s.sol:BrokerMessage -vvv --broadcast --rpc-url avalancheFuji",
"receiveMessage": "forge script ./script/Receive.s.sol:ReceiveMessage -vvv --broadcast --rpc-url dispatchTestnet"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@chainlink/contracts-ccip": "^1.4.0",
"@chainlink/local": "github:smartcontractkit/chainlink-local"
}
}