forked from Nethereum/Nethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
23 lines (22 loc) · 945 Bytes
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
site_name: Nethereum
pages:
- 'Home': 'index.md'
- 'Ethereum': 'ethereum.md'
- 'Ethereum and Clients':
- Introduction: 'ethereum-and-clients/index.md'
- 'Geth (Go client)' : 'ethereum-and-clients/geth.md'
- 'Parity' : 'ethereum-and-clients/parity.md'
- 'Quorum' : 'ethereum-and-clients/quorum.md'
- 'Infura' : 'ethereum-and-clients/infura.md'
- 'TestRPC' : 'ethereum-and-clients/test-rpc.md'
- 'Accounts': 'accounts.md'
- 'Web3 and RPC':
- 'Web3' : 'introduction/web3.md'
- 'RPC' : 'introduction/rpc.md'
- 'IPC' : 'introduction/ipc.md'
- 'Client Libraries': 'client-libraries.md'
- 'Working with Contracts':
- 'Create and deploy contracts' : 'contracts/deploying.md'
- 'Calls, transactions, events, filters and topics' : 'contracts/calling-transactions-events.md'
- 'Multiple output parameters and function DTOs' : 'contracts/functiondtos.md'
- 'Sample Projects' : 'demos/sample-projects.md'