Skip to content

Commit 2f6892e

Browse files
authored
Merge pull request #550 from InjectiveLabs/dev
#PRMaster
2 parents a16a7b2 + 24fa2dd commit 2f6892e

File tree

1,609 files changed

+48281
-104227
lines changed

Some content is hidden

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

1,609 files changed

+48281
-104227
lines changed

.gitbook/README.md

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
1-
# Getting Started
1+
# Overview
22

3-
**Stable Package Version**
4-
5-
![](https://img.shields.io/npm/v/%40injectivelabs/sdk-ts/latest?label=%40injectivelabs%2Fsdk-ts)![Stable Package (all) versions](https://img.shields.io/npm/v/%40injectivelabs/wallet-ts/latest?label=%40injectivelabs%2Fwallet-ts)
6-
![](https://img.shields.io/npm/v/%40injectivelabs/networks/latest?label=%40injectivelabs%2Fnetworks)![](https://img.shields.io/npm/v/%40injectivelabs/ts-types/latest?label=%40injectivelabs%2Fts-types)![](https://img.shields.io/npm/v/%40injectivelabs/utils/latest?label=%40injectivelabs%2Futils)
3+
**Supported Node Versions&#x20;**<mark style="color:green;">**> 18.x**</mark>
74

8-
![Supported Node Version](http://img.shields.io/badge/node-18.x-brightgreen.svg)
9-
10-
**Deprecated Packages:**
5+
**Stable Package Version**
116

12-
![](https://img.shields.io/npm/v/%40injectivelabs/bridge-ts/latest?label=%40injectivelabs%2Fbridge-ts)![](https://img.shields.io/npm/v/%40injectivelabs/contracts/latest?label=%40injectivelabs%2Fcontracts)![](https://img.shields.io/npm/v/%40injectivelabs/sdk-ui-ts/latest?label=%40injectivelabs%2Fsdk-ui-ts)![](https://img.shields.io/npm/v/%40injectivelabs/token-utils/latest?label=%40injectivelabs%2Ftoken-utils)![](https://img.shields.io/npm/v/%40injectivelabs%2Ftoken-metadata/latest?label=%40injectivelabs%2Ftoken-metadata)
7+
![](https://img.shields.io/npm/v/%40injectivelabs/sdk-ts/latest?label=%40injectivelabs%2Fsdk-ts) ![](https://img.shields.io/npm/v/%40injectivelabs/wallet-ts/latest?label=%40injectivelabs%2Fwallet-ts) ![](https://img.shields.io/npm/v/%40injectivelabs/networks/latest?label=%40injectivelabs%2Fnetworks) ![](https://img.shields.io/npm/v/%40injectivelabs/ts-types/latest?label=%40injectivelabs%2Fts-types) ![](https://img.shields.io/npm/v/%40injectivelabs/utils/latest?label=%40injectivelabs%2Futils)
138

149
**Latest Package Versions:**
1510

16-
![](https://img.shields.io/npm/v/%40injectivelabs/sdk-ts/next?label=%40injectivelabs%2Fsdk-ts)![](https://img.shields.io/npm/v/%40injectivelabs/wallet-ts/next?label=%40injectivelabs%2Fwallet-ts)![](https://img.shields.io/npm/v/%40injectivelabs/networks/next?label=%40injectivelabs%2Fnetworks)![](https://img.shields.io/npm/v/%40injectivelabs/ts-types/next?label=%40injectivelabs%2Fts-types)![](https://img.shields.io/npm/v/%40injectivelabs/utils/next?label=%40injectivelabs%2Futils)
11+
![](https://img.shields.io/npm/v/%40injectivelabs/sdk-ts/next?label=%40injectivelabs%2Fsdk-ts) ![](https://img.shields.io/npm/v/%40injectivelabs/wallet-ts/next?label=%40injectivelabs%2Fwallet-ts) ![](https://img.shields.io/npm/v/%40injectivelabs/networks/next?label=%40injectivelabs%2Fnetworks) ![](https://img.shields.io/npm/v/%40injectivelabs/ts-types/next?label=%40injectivelabs%2Fts-types) ![](https://img.shields.io/npm/v/%40injectivelabs/utils/next?label=%40injectivelabs%2Futils)
1712

18-
_**Note:** The latest versions are published using the `next` tag. For stable versions use the `latest` tag or check npm registry for the latest stable version._&#x20;
13+
_**Note:** The latest versions are published using the `next` tag. For stable versions use the `latest` tag or check npm registry for the latest stable version._
1914

2015
The purpose of this Wiki is to help developers build decentralized applications on top of Injective. Let's dive a bit deeper into each section and explain its purpose so its easier to get the bigger picture.
2116

2217
_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._
2318

24-
- [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.
25-
- [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.
26-
- [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.
2722
1. Using the Cosmos native approach in creating a transaction, sign it using a **Cosmos native wallet** and broadcast it to Injective,
2823
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,
2924
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,
3025
4. Using the Cosmos native approach in creating a transaction, sign it using a **raw PrivateKey** and broadcast it to Injective,
3126
5. Using the Web3Gateway microservice - an API that provides fee delegation services.
32-
- [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.
33-
- [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.
34-
- [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.
35-
- [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.
31+
32+
**Deprecated Packages:**
33+
34+
![](https://img.shields.io/npm/v/%40injectivelabs/bridge-ts/latest?label=%40injectivelabs%2Fbridge-ts) ![](https://img.shields.io/npm/v/%40injectivelabs/contracts/latest?label=%40injectivelabs%2Fcontracts) ![](https://img.shields.io/npm/v/%40injectivelabs/sdk-ui-ts/latest?label=%40injectivelabs%2Fsdk-ui-ts) ![](https://img.shields.io/npm/v/%40injectivelabs/token-utils/latest?label=%40injectivelabs%2Ftoken-utils) ![](https://img.shields.io/npm/v/%40injectivelabs%2Ftoken-metadata/latest?label=%40injectivelabs%2Ftoken-metadata)

0 commit comments

Comments
 (0)