-
Notifications
You must be signed in to change notification settings - Fork 0
/
redspot.config.ts
40 lines (39 loc) · 950 Bytes
/
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
import { RedspotUserConfig } from "redspot/types";
import "@redspot/patract";
import "@redspot/chai";
import "@redspot/gas-reporter";
import "@redspot/known-types";
import "@redspot/watcher";
import "@redspot/explorer";
import "@redspot/decimals";
export default {
defaultNetwork: "development",
contract: {
ink: {
docker: false,
toolchain: "nightly",
sources: ["contracts/**/*"],
},
},
networks: {
development: {
endpoint: "ws://127.0.0.1:9944",
gasLimit: "400000000000",
types: {},
},
jupiter: {
endpoint: "wss://jupiter-poa.elara.patract.io",
gasLimit: "400000000000",
accounts: ["//Alice"],
types: {},
},
},
mocha: {
timeout: 60000,
},
docker: {
sudo: false,
runTestnet:
"docker run -p 9944:9944 --rm redspot/contract /bin/bash -c 'canvas --rpc-cors all --tmp --dev --ws-port=9944 --ws-external'",
},
} as RedspotUserConfig;