-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredspot.config.ts
74 lines (73 loc) · 1.87 KB
/
redspot.config.ts
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import { RedspotUserConfig } from 'redspot/types';
import '@redspot/patract';
import '@redspot/chai';
import '@redspot/gas-reporter';
require('dotenv').config();
export default {
defaultNetwork: 'development',
contract: {
ink: {
toolchain: 'nightly',
sources: ['contracts/**/*']
}
},
networks: {
development: {
endpoint: 'ws://127.0.0.1:9944',
types: {
"LookupSource": "MultiAddress",
"Address": "MultiAddress",
"FullIdentification": "AccountId",
"AuthorityState": {
"_enum": [
"Working",
"Waiting"
]
},
"EraIndex": "u32",
"ActiveEraInfo": {
"index": "EraIndex",
"start": "Option<u64>"
},
"UnappliedSlash": {
"validator": "AccountId",
"reporters": "Vec<AccountId>"
}, Error: {
_enum: ['VaultIdError', 'AccessDenied', 'MetadataNotValid', 'MathError']
},
},
gasLimit: '400000000000',
explorerUrl: 'https://polkadot.js.org/apps/#/explorer/query/',
},
jupiter: {
endpoint: 'wss://ws.jupiter-poa.patract.cn',
gasLimit: '400000000000',
accounts: [process.env.SEED_PHRASE],
types: {
"LookupSource": "MultiAddress",
"Address": "MultiAddress",
"FullIdentification": "AccountId",
"AuthorityState": {
"_enum": [
"Working",
"Waiting"
]
},
"EraIndex": "u32",
"ActiveEraInfo": {
"index": "EraIndex",
"start": "Option<u64>"
},
"UnappliedSlash": {
"validator": "AccountId",
"reporters": "Vec<AccountId>"
}, Error: {
_enum: ['VaultIdError', 'AccessDenied', 'MetadataNotValid', 'MathError']
},
},
}
},
mocha: {
timeout: 180000
}
} as RedspotUserConfig;