-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcore.nim
35 lines (35 loc) · 1.19 KB
/
core.nim
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
type IpfsNode = object
Identity: ID
repo:Repo
pinning: Pinner
mounts: Mounts
privateKey: PrivKey
pNetFingerprint: PNetFingerprint
peerstore: Peerstore
filestore: Filestore
baseBlocks: BaseBlocks
blocks: BlockService
dag: DAGService
resolver: Resolver
reporter: BandwidthCounter
discovery: Service
filesRoot: Root
recordValidator: Validator
peerHost: Host
peering: PeeringService
filters: Filters
bootstrapper: Closer
routing: Routing
exchange: Interface
namesys: NameSystem
provider: System
ipnsRepub: Republisher
graphExchange: GraphExchange
pubSub: PubSub
psRouter: PubsubValueStore
dht: DHT
p2p: P2P
process: Process
proc stop():error
isOnline: bool
isDaemon: bool