-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 2.45 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
{
"name": "xcm-tools",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"scripts": {
"register-asset": "ts-node 'scripts/xcm-asset-registrator.ts'",
"initialize-xcm": "ts-node 'scripts/xcm-initializer.ts'",
"hrmp-manipulator": "ts-node 'scripts/hrmp-channel-manipulator.ts'",
"set-transact-info": "ts-node 'scripts/xcm-transactor-info-setter.ts'",
"register-derivative-index": "ts-node 'scripts/xcm-derivative-index-registrar.ts'",
"statemint-hrmp-propose": "ts-node 'scripts/statemint-hrmp-relay-proposal-generator.ts'",
"para-registrar-swap": "ts-node 'scripts/para-registrar-swapper'",
"xcm-decode-relay": "ts-node 'scripts/decode-xcm-relay.ts'",
"xcm-decode-para": "ts-node 'scripts/decode-xcm-para.ts'",
"generic-call-propose": "ts-node 'scripts/generic-call-proposer.ts'",
"xcm-derivated-address-calculator": "ts-node 'scripts/xcm-derivated-address-calculator.ts'",
"calculate-sovereign-account": "ts-node 'scripts/calculate-sovereign-account.ts'",
"calculate-external-asset-info": "ts-node 'scripts/calculate-external-asset-info.ts'",
"calculate-local-asset-info": "ts-node 'scripts/calculate-local-asset-info.ts'",
"calculate-multilocation-derivative-account": "ts-node 'scripts/calculate-multilocation-derivative-account.ts'",
"calculate-remote-origin": "ts-node 'scripts/calculate-multilocation-derivative-account.ts'",
"calculate-relative-price": "ts-node 'scripts/calculate-relative-price.ts'"
},
"dependencies": {
"@moonbeam-network/api-augment": "^0.1801.0",
"@polkadot/api": "^15.4.1",
"@types/yargs": "^17.0.0",
"axios": "^1.7.9",
"coingecko-api": "^1.0.10",
"divide-bigint": "1.0.4",
"exceljs": "4.2.1",
"load-json-file": "^6.2.0",
"npm-watch": "^0.9.0",
"rimraf": "^3.0.2",
"ts-node": "9.1",
"typescript": "^3.9.6",
"yargs": "^17.0.1"
},
"overrides": {
"@polkadot/api": "$@polkadot/api",
"@polkadot/api-derive": "$@polkadot/api",
"@polkadot/api-base": "$@polkadot/api",
"@polkadot/rpc-augment": "$@polkadot/api",
"@polkadot/rpc-core": "$@polkadot/api",
"@polkadot/rpc-provider": "$@polkadot/api",
"@polkadot/types-create": "$@polkadot/api",
"@polkadot/types-augment": "$@polkadot/api",
"@polkadot/types-support": "$@polkadot/api",
"@polkadot/types-codec": "$@polkadot/api",
"@polkadot/types": "$@polkadot/api",
"@polkadot/types-known": "$@polkadot/api"
}
}