-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathindex.js
56 lines (56 loc) · 1.55 KB
/
index.js
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
"use strict";
/**
* This package contains deployed contract addresses, ABIs, and Typechain types
* for the Dark Forest game.
*
* ## Installation
*
* You can install this package using [`npm`](https://www.npmjs.com) or
* [`yarn`](https://classic.yarnpkg.com/lang/en/) by running:
*
* ```bash
* npm install --save @darkforest_eth/contracts
* ```
* ```bash
* yarn add @darkforest_eth/contracts
* ```
*
* When using this in a plugin, you might want to load it with [skypack](https://www.skypack.dev)
*
* ```js
* import * as contracts from 'http://cdn.skypack.dev/@darkforest_eth/contracts'
* ```
*
* ## Typechain
*
* The Typechain types can be found in the `typechain` directory.
*
* ## ABIs
*
* The contract ABIs can be found in the `abis` directory.
*
* @packageDocumentation
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.INIT_ADDRESS = exports.CONTRACT_ADDRESS = exports.START_BLOCK = exports.NETWORK_ID = exports.NETWORK = void 0;
/**
* The name of the network where these contracts are deployed.
*/
exports.NETWORK = 'localhost';
/**
* The id of the network where these contracts are deployed.
*/
exports.NETWORK_ID = 31337;
/**
* The block in which the DarkForest contract was initialized.
*/
exports.START_BLOCK = 0;
/**
* The address for the DarkForest contract.
*/
exports.CONTRACT_ADDRESS = '0x8950bab77f29E8f81e6F78AEA0a79bADD88Eeb13';
/**
* The address for the initalizer contract. Useful for lobbies.
*/
exports.INIT_ADDRESS = '0x500cf53555c09948f4345594F9523E7B444cD67E';
//# sourceMappingURL=index.js.map