Skip to content

Commit 581ed01

Browse files
Bojan Angjelkoskigitbook-bot
authored andcommitted
GITBOOK-91: change request with no subject merged in GitBook
1 parent c3fdda6 commit 581ed01

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+204
-183
lines changed

.gitbook/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Getting Started
1+
# Overview
22

3-
**Supported Node Versions **<mark style="color:green;">**> 18.x**</mark>
3+
**Supported Node Versions&#x20;**<mark style="color:green;">**> 18.x**</mark>
44

55
**Stable Package Version**
66

@@ -16,18 +16,18 @@ The purpose of this Wiki is to help developers build decentralized applications
1616

1717
_Note: Reading the Technical Concepts section after reading the overview below is highly recommended. There are some concepts that can have a bit steeper learning curve than others, so we recommend going through them to understand a bit more about Injective._
1818

19-
* [Wallets](wallet/) - In this section, we are going to explain (in technical terms) how Accounts are derived on Injective, how you can connect your wallet straight from the dApp itself, and finally have a look at the **WalletStrategy** - a package built by the InjectiveLabs team which offers out of the box solution for providing multiple wallet solutions to the user to connect and interact with your dApp.
20-
* [Querying](querying/) - In this section we are going to explore different ways to obtain data from different data sources needed to build your dApps. First, we are going to see how to query the chain directly and then we are going to explore the Indexer API - an indexer solution for easier data access/streaming including historical data.
21-
* [Transaction](transactions/) - In this section, we are going to explore different ways to make transactions on Injective. First, we are going to explain (in technical terms) how Transactions work on Injective and some technical concepts around them and then we are going to have a look at how to prepare, sign, and broadcast transactions on Injective in several ways. There are a couple of ways to do this.
19+
* [Wallets](wallets/wallet.md) - In this section, we are going to explain (in technical terms) how Accounts are derived on Injective, how you can connect your wallet straight from the dApp itself, and finally have a look at the **WalletStrategy** - a package built by the InjectiveLabs team which offers out of the box solution for providing multiple wallet solutions to the user to connect and interact with your dApp.
20+
* [Querying](querying/querying.md) - In this section we are going to explore different ways to obtain data from different data sources needed to build your dApps. First, we are going to see how to query the chain directly and then we are going to explore the Indexer API - an indexer solution for easier data access/streaming including historical data.
21+
* [Transaction](transactions/transactions.md) - In this section, we are going to explore different ways to make transactions on Injective. First, we are going to explain (in technical terms) how Transactions work on Injective and some technical concepts around them and then we are going to have a look at how to prepare, sign, and broadcast transactions on Injective in several ways. There are a couple of ways to do this.
2222
1. Using the Cosmos native approach in creating a transaction, sign it using a **Cosmos native wallet** and broadcast it to Injective,
2323
2. Using the Ethereum native approach in creating a transaction using EIP712 typed data, sign it using an **Ethereum native wallet** and broadcast it to Injective,
2424
3. Using the Ethereum native approach in creating a transaction using EIP712 typed data, sign it using a **Ledger device** and broadcast it to Injective,
2525
4. Using the Cosmos native approach in creating a transaction, sign it using a **raw PrivateKey** and broadcast it to Injective,
2626
5. Using the Web3Gateway microservice - an API that provides fee delegation services.
27-
* [Core Modules](core-modules/) - In this section we are going to have a quick summary of the core modules on Injective and show examples of how to create some Messages (+ pack them into a transaction, sign them using a private key, and broadcast them on Injective) within these core modules.
28-
* [Bridge](bridge/) - In this section, we are going to have a look at Injective's interoperability and explain how developers can utilize the Peggy bridge and the IBC bridge to bridge assets over to Injective.
29-
* [Networks](readme/networks.md) - In this section, we will look at different (pre-defined) available Networks for developers to utilize while building dApps on top of Injective, allowing them to start building without the need to make their own infrastructure.
30-
* [Calculations](calculations/) - In this section, we will look at different calculations formula converting values between UI human-readable and chain format.
27+
* [Core Modules](core-modules-and-examples/core-modules.md) - In this section we are going to have a quick summary of the core modules on Injective and show examples of how to create some Messages (+ pack them into a transaction, sign them using a private key, and broadcast them on Injective) within these core modules.
28+
* [Bridge](bridges/bridge.md) - In this section, we are going to have a look at Injective's interoperability and explain how developers can utilize the Peggy bridge and the IBC bridge to bridge assets over to Injective.
29+
* [Networks](getting-started/application-concepts/networks.md) - In this section, we will look at different (pre-defined) available Networks for developers to utilize while building dApps on top of Injective, allowing them to start building without the need to make their own infrastructure.
30+
* [Calculations](getting-started/application-concepts/calculations/) - In this section, we will look at different calculations formula converting values between UI human-readable and chain format.
3131

3232
**Deprecated Packages:**
3333

.gitbook/SUMMARY.md

Lines changed: 122 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,124 @@
11
# Table of contents
22

3-
- [Getting Started](README.md)
4-
- [Technical Concepts](readme/technical-concepts.md)
5-
- [Application Concepts](readme/application-concepts.md)
6-
- [Assets](readme/assets/README.md)
7-
- [Creating Tokens](readme/assets/creating-tokens.md)
8-
- [Denom Client (deprecated)](readme/assets/denom-client.md)
9-
- [Injective Lists](readme/assets/injective-list.md)
10-
- [Networks](readme/networks.md)
11-
- [CosmJs Support](readme/getting-started-cosmjs.md)
12-
- [Running examples](readme/running-examples.md)
13-
- [Wallet](wallet/README.md)
14-
- [Accounts](wallet/wallet-accounts.md)
15-
- [Wallet Connections](wallet/wallet-connections.md)
16-
- [Wallet Strategy](wallet/wallet-wallet-strategy.md)
17-
- [Offchain (Arbitrary) Data](wallet/offchain-arbitrary-data.md)
18-
- [Querying](querying/README.md)
19-
- [Indexer](querying/querying-api/README.md)
20-
- [Account](querying/querying-api/querying-indexer-account.md)
21-
- [Auction](querying/querying-api/querying-indexer-auction.md)
22-
- [Derivatives](querying/querying-api/querying-indexer-derivatives.md)
23-
- [Explorer](querying/querying-api/querying-indexer-explorer.md)
24-
- [Insurance Funds](querying/querying-api/querying-indexer-insurance-funds.md)
25-
- [Markets](querying/querying-api/querying-indexer-markets.md)
26-
- [Leaderboard](querying/querying-api/querying-indexer-leaderboard.md)
27-
- [Mito](querying/querying-api/querying-indexer-mito.md)
28-
- [Oracle](querying/querying-api/querying-indexer-oracle.md)
29-
- [Portfolio](querying/querying-api/querying-indexer-portfolio.md)
30-
- [Spot](querying/querying-api/querying-indexer-spot.md)
31-
- [Web3Gw Transactions](querying/querying-api/querying-indexer-transaction.md)
32-
- [Streaming](querying/querying-api/streaming/README.md)
33-
- [Account](querying/querying-api/streaming/streaming-indexer-account.md)
34-
- [Auction](querying/querying-api/streaming/streaming-indexer-auction.md)
35-
- [Derivatives](querying/querying-api/streaming/streaming-indexer-derivatives.md)
36-
- [Oracle](querying/querying-api/streaming/streaming-indexer-oracle.md)
37-
- [Portfolio](querying/querying-api/streaming/streaming-indexer-portfolio.md)
38-
- [Spot](querying/querying-api/streaming/streaming-indexer-spot.md)
39-
- [Explorer](querying/querying-api/streaming/streaming-indexer-explorer.md)
40-
- [Chain](querying/querying-chain/README.md)
41-
- [Auction](querying/querying-chain/querying-chain-auction-module.md)
42-
- [Auth](querying/querying-chain/querying-chain-auth-module.md)
43-
- [Bank](querying/querying-chain/querying-chain-bank-module.md)
44-
- [Distribution](querying/querying-chain/querying-chain-distribution.md)
45-
- [Exchange](querying/querying-chain/querying-chain-exchange.md)
46-
- [Governance](querying/querying-chain/querying-chain-governance.md)
47-
- [IBC](querying/querying-chain/querying-chain-ibc.md)
48-
- [Mint](querying/querying-chain/querying-chain-mint.md)
49-
- [Insurance Funds](querying/querying-chain/querying-chain-insurance-funds.md)
50-
- [Oracle](querying/querying-chain/querying-chain-oracle.md)
51-
- [Peggy](querying/querying-chain/querying-chain-peggy.md)
52-
- [Permissions](querying/querying-chain/querying-chain-permissions.md)
53-
- [Staking](querying/querying-chain/querying-chain-staking.md)
54-
- [Tendermint](querying/querying-chain/querying-chain-tendermint.md)
55-
- [Wasm](querying/querying-chain/querying-chain-wasm.md)
56-
- [WasmX](querying/querying-chain/querying-chain-wasmx.md)
57-
- [Token Factory](querying/querying-chain/token-factory.md)
58-
- [Ethereum (GraphQL)](querying/querying-ethereum.md)
59-
- [Transactions](transactions/README.md)
60-
- [Cosmos](transactions/transactions-cosmos/README.md)
61-
- [Ledger through Keplr Wallet](transactions/transactions-cosmos/ledger-through-keplr-wallet.md)
62-
- [Ethereum](transactions/ethereum.md)
63-
- [Ethereum Ledger](transactions/ethereum-ledger.md)
64-
- [MsgBroadcaster](transactions/msgbroadcaster.md)
65-
- [Private Key](transactions/private-key.md)
66-
- [Web3 Gateway](transactions/web3-gateway.md)
67-
- [Core Modules](core-modules/README.md)
68-
- [Auction](core-modules/auction.md)
69-
- [AuthZ](core-modules/authz.md)
70-
- [Bank](core-modules/bank.md)
71-
- [Distribution](core-modules/distribution.md)
72-
- [Exchange](core-modules/exchange.md)
73-
- [Feegrant](core-modules/feegrant.md)
74-
- [Governance](core-modules/governance.md)
75-
- [IBC](core-modules/ibc.md)
76-
- [Insurance](core-modules/insurance.md)
77-
- [Peggy](core-modules/peggy.md)
78-
- [Permissions](core-modules/permissions.md)
79-
- [Staking](core-modules/staking.md)
80-
- [Tokenfactory](core-modules/token-factory.md)
81-
- [Wasm](core-modules/wasm.md)
82-
- [Bridge](bridge/README.md)
83-
- [Ethereum](bridge/ethereum.md)
84-
- [IBC](bridge/ibc.md)
85-
- [Wormhole](bridge/wormhole.md)
86-
- [Contracts](contracts/README.md)
87-
- [Injective Name Service](contracts/injective-name-service.md)
88-
- [Neptune Service](contracts/neptune-service.md)
89-
- [CW20 to Bank & Market Order in One Transaction](contracts/cw20-convert-and-market-order-example.md)
90-
- [Building dApps](building-dapps/README.md)
91-
- [Configuring Nuxt](building-dapps/configuring-nuxt.md)
92-
- [Configuring React](building-dapps/configuring-react.md)
93-
- [dApps Examples](building-dapps/dapps-examples/README.md)
94-
- [Smart Contract](building-dapps/smart-contract.md)
95-
- [DEX](building-dapps/dex.md)
96-
- [Bridge](building-dapps/bridge.md)
97-
- [Simple HTML example with Webpack](building-dapps/dapps-examples/simple-html-example-with-webpack.md)
98-
- [Calculations](calculations/README.md)
99-
- [Min Price Tick Size](calculations/min-price-tick-size.md)
100-
- [Min Quantity Tick Size](calculations/min-quantity-tick-size.md)
3+
* [Overview](README.md)
4+
5+
## Getting Started
6+
7+
* [Technical Concepts](getting-started/technical-concepts.md)
8+
* [Application Concepts](getting-started/application-concepts/README.md)
9+
* [Calculations](getting-started/application-concepts/calculations/README.md)
10+
* [Min Price Tick Size](getting-started/application-concepts/calculations/min-price-tick-size.md)
11+
* [Min Quantity Tick Size](getting-started/application-concepts/calculations/min-quantity-tick-size.md)
12+
* [Networks](getting-started/application-concepts/networks.md)
13+
* [CosmJs Support](getting-started/application-concepts/getting-started-cosmjs.md)
14+
* [Assets](getting-started/assets/README.md)
15+
* [Creating Tokens](getting-started/assets/creating-tokens.md)
16+
* [Denom Client (deprecated)](getting-started/assets/denom-client.md)
17+
* [Injective Lists](getting-started/assets/injective-list.md)
18+
* [Running examples](getting-started/running-examples.md)
19+
20+
## Wallets
21+
22+
* [Getting Started](wallets/wallet.md)
23+
* [Accounts](wallets/wallet-accounts.md)
24+
* [Wallet Connections](wallets/wallet-connections.md)
25+
* [Wallet Strategy](wallets/wallet-wallet-strategy.md)
26+
* [Offchain (Arbitrary) Data](wallets/offchain-arbitrary-data.md)
27+
28+
## Querying
29+
30+
* [Getting Started](querying/querying.md)
31+
* [Chain](querying/querying-chain/README.md)
32+
* [Auction](querying/querying-chain/querying-chain-auction-module.md)
33+
* [Auth](querying/querying-chain/querying-chain-auth-module.md)
34+
* [Bank](querying/querying-chain/querying-chain-bank-module.md)
35+
* [Distribution](querying/querying-chain/querying-chain-distribution.md)
36+
* [Exchange](querying/querying-chain/querying-chain-exchange.md)
37+
* [Governance](querying/querying-chain/querying-chain-governance.md)
38+
* [IBC](querying/querying-chain/querying-chain-ibc.md)
39+
* [Mint](querying/querying-chain/querying-chain-mint.md)
40+
* [Insurance Funds](querying/querying-chain/querying-chain-insurance-funds.md)
41+
* [Oracle](querying/querying-chain/querying-chain-oracle.md)
42+
* [Peggy](querying/querying-chain/querying-chain-peggy.md)
43+
* [Permissions](querying/querying-chain/querying-chain-permissions.md)
44+
* [Staking](querying/querying-chain/querying-chain-staking.md)
45+
* [Tendermint](querying/querying-chain/querying-chain-tendermint.md)
46+
* [Wasm](querying/querying-chain/querying-chain-wasm.md)
47+
* [WasmX](querying/querying-chain/querying-chain-wasmx.md)
48+
* [Token Factory](querying/querying-chain/token-factory.md)
49+
* [Indexer](querying/querying-api/README.md)
50+
* [Account](querying/querying-api/querying-indexer-account.md)
51+
* [Auction](querying/querying-api/querying-indexer-auction.md)
52+
* [Derivatives](querying/querying-api/querying-indexer-derivatives.md)
53+
* [Explorer](querying/querying-api/querying-indexer-explorer.md)
54+
* [Insurance Funds](querying/querying-api/querying-indexer-insurance-funds.md)
55+
* [Markets](querying/querying-api/querying-indexer-markets.md)
56+
* [Leaderboard](querying/querying-api/querying-indexer-leaderboard.md)
57+
* [Mito](querying/querying-api/querying-indexer-mito.md)
58+
* [Oracle](querying/querying-api/querying-indexer-oracle.md)
59+
* [Portfolio](querying/querying-api/querying-indexer-portfolio.md)
60+
* [Spot](querying/querying-api/querying-indexer-spot.md)
61+
* [Web3Gw Transactions](querying/querying-api/querying-indexer-transaction.md)
62+
* [Streaming](querying/querying-api/streaming/README.md)
63+
* [Account](querying/querying-api/streaming/streaming-indexer-account.md)
64+
* [Auction](querying/querying-api/streaming/streaming-indexer-auction.md)
65+
* [Derivatives](querying/querying-api/streaming/streaming-indexer-derivatives.md)
66+
* [Oracle](querying/querying-api/streaming/streaming-indexer-oracle.md)
67+
* [Portfolio](querying/querying-api/streaming/streaming-indexer-portfolio.md)
68+
* [Spot](querying/querying-api/streaming/streaming-indexer-spot.md)
69+
* [Explorer](querying/querying-api/streaming/streaming-indexer-explorer.md)
70+
* [Ethereum (GraphQL)](querying/querying-ethereum.md)
71+
72+
## Transactions
73+
74+
* [Getting Started](transactions/transactions.md)
75+
* [Cosmos](transactions/transactions-cosmos/README.md)
76+
* [Ledger through Keplr Wallet](transactions/transactions-cosmos/ledger-through-keplr-wallet.md)
77+
* [Ethereum](transactions/ethereum.md)
78+
* [Ethereum Ledger](transactions/ethereum-ledger.md)
79+
* [MsgBroadcaster](transactions/msgbroadcaster.md)
80+
* [Private Key](transactions/private-key.md)
81+
* [Web3 Gateway](transactions/web3-gateway.md)
82+
83+
## Core Modules (& examples)
84+
85+
* [Getting Started](core-modules-and-examples/core-modules.md)
86+
* [Auction](core-modules-and-examples/auction.md)
87+
* [AuthZ](core-modules-and-examples/authz.md)
88+
* [Bank](core-modules-and-examples/bank.md)
89+
* [Distribution](core-modules-and-examples/distribution.md)
90+
* [Exchange](core-modules-and-examples/exchange.md)
91+
* [Feegrant](core-modules-and-examples/feegrant.md)
92+
* [Governance](core-modules-and-examples/governance.md)
93+
* [IBC](core-modules-and-examples/ibc.md)
94+
* [Insurance](core-modules-and-examples/insurance.md)
95+
* [Peggy](core-modules-and-examples/peggy.md)
96+
* [Permissions](core-modules-and-examples/permissions.md)
97+
* [Staking](core-modules-and-examples/staking.md)
98+
* [Tokenfactory](core-modules-and-examples/token-factory.md)
99+
* [Wasm](core-modules-and-examples/wasm.md)
100+
101+
## Smart Contracts
102+
103+
* [Cosmwasm](smart-contracts/contracts/README.md)
104+
* [Injective Name Service](smart-contracts/contracts/injective-name-service.md)
105+
* [Neptune Service](smart-contracts/contracts/neptune-service.md)
106+
* [CW20 to Bank & Market Order in One Transaction](smart-contracts/contracts/cw20-convert-and-market-order-example.md)
107+
108+
## Bridges
109+
110+
* [Getting Started](bridges/bridge.md)
111+
* [Ethereum](bridges/ethereum.md)
112+
* [IBC](bridges/ibc.md)
113+
* [Wormhole](bridges/wormhole.md)
114+
115+
## Building Dapps
116+
117+
* [Getting Started](building-dapps/building-dapps.md)
118+
* [Configuring Nuxt](building-dapps/configuring-nuxt.md)
119+
* [Configuring React](building-dapps/configuring-react.md)
120+
* [dApps Examples](building-dapps/dapps-examples/README.md)
121+
* [Smart Contract](building-dapps/smart-contract.md)
122+
* [DEX](building-dapps/dex.md)
123+
* [Bridge](building-dapps/bridge.md)
124+
* [Simple HTML example with Webpack](building-dapps/dapps-examples/simple-html-example-with-webpack.md)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)