-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.18 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.18 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
{
"name": "chainbills-admin",
"version": "0.0.0",
"private": true,
"main": "lib/index.js",
"scripts": {
"cosmwasm:instantiate": "ts-node -T --swc src/cosmwasm/instantiate",
"cosmwasm:update-max-withdrawal-fee": "ts-node -T --swc src/cosmwasm/update-max-withdrawal-fee",
"evm:register-foreign-contract": "ts-node -T --swc src/evm/register-foreign-contract",
"evm:update-max-withdrawal-fee": "ts-node -T --swc src/evm/update-max-withdrawal-fee",
"solana:initialize": "ts-node -T --swc src/solana/initialize",
"solana:register-foreign-contract": "ts-node -T --swc src/solana/register-foreign-contract",
"solana:update-max-withdrawal-fee": "ts-node -T --swc src/solana/update-max-withdrawal-fee",
"solana:update-max-withdrawal-fee-native": "ts-node -T --swc src/solana/update-max-withdrawal-fee-native"
},
"devDependencies": {
"@swc/core": "^1.7.22",
"ts-node": "^10.9.2"
},
"dependencies": {
"@cosmjs/stargate": "^0.32.4",
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.91.7",
"@wormhole-foundation/sdk": "^0.5.2",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"viem": "^2.21.1"
}
}