Skip to content
This repository was archived by the owner on Dec 8, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions .gitbook/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
* [The Graph](https://docs.substreams.dev/documentation/how-to-guides/injective)
* [EVM Developers](developers-evm/README.md)
* [EVM Network Information](developers-evm/network-information.md)
* [EVM Integrations Cheatsheet](developers-evm/integrations-cheat-sheet-evm.md)
* [Your First EVM Smart Contract](developers-evm/smart-contracts/README.md)
* [Compile with Hardhat](developers-evm/smart-contracts/compile-hardhat.md)
* [Test with Hardhat](developers-evm/smart-contracts/test-hardhat.md)
Expand Down
121 changes: 121 additions & 0 deletions .gitbook/developers-evm/integrations-cheat-sheet-evm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
# EVM Integrations Cheat Sheet

If you have an existing EVM dApp, and are looking to build/ deploy/ integrate it on Injective Mainnet, this guide is for you!

# Network Config

- Chain ID: 1776

Reference: [EVM Network Information](https://docs.injective.network/developers-evm/network-information#injective-evm-mainnet-details)

Note: **Do not use** InEVM, as that has been deprecated.

# Explorers

Explorer GUIs

- [https://blockscout.injective.network/](https://blockscout.injective.network/) → Can only see EVM transactions
- [https://injscan.com/](https://injscan.com/) → Can see both EVM and Cosmos transactions

Explorer APIs:

- [https://blockscout-api.injective.network/api](https://blockscout-api.injective.network/api)

Reference: [EVM Network Information](https://docs.injective.network/developers-evm/network-information#injective-evm-mainnet-details)

# RPC Endpoints

- **Recommended** for integrations
- Customisable for needs of applications
- Customisable rate limits, and no cut off for historical data queries
- Freemium or paid options
- How to connect:
- QuickNode: [Injective RPC Node Endpoints, APIs & Tools | QuickNode](https://www.quicknode.com/chains/inj)
- ThirdWeb: [Injective | ThirdWeb](https://thirdweb.com/injective)
- **Not** recommended for integrations
- Not customisable for needs of applications
- Heavy rate limiting, and cut off for historical data queries
- Free option
- How to connect:
- JSON-RPC Endpoint: `https://sentry.evm-rpc.injective.network/`
- WS Endpoint: `wss://sentry.evm-ws.injective.network`

Reference: [EVM Network Information](https://docs.injective.network/developers-evm/network-information#injective-evm-mainnet-details)

Note: **Do not use** InEVM, as that has been deprecated.

# Contract Addresses

| Name | Description | Address |
|---|---|---|
|USDT| USDT (MTS)|`0x88f7F2b685F9692caf8c478f5BADF09eE9B1Cc13`|
|wETH| wrapped ETH |`0x83A15000b753AC0EeE06D2Cb41a69e76D0D5c7F7`|
|wINJ| wrapped INJ |`0x0000000088827d2d103ee2d9A6b781773AE03FfB`|
|USDC| USDC (MTS) |`0x2a25fbD67b3aE485e461fe55d9DbeF302B7D3989`|
|MultiCall| |`0xcA11bde05977b3631167028862bE2a173976CA11`|

Please use the reference page below as the canonical source.

Reference: [EVM Network Information](https://docs.injective.network/developers-evm/network-information) 

# Bridges

[Injective Bridge](https://bridge.injective.network)

Guides:

- [How To Bridge From Ethereum To Injective Using Metamask](https://injective.com/blog/how-to-bridge-from-ethereum-to-injective-using-metamask/)
- [How To Bridge From Solana To Injective Using Phantom](https://injective.com/blog/how-to-bridge-from-solana-to-injective-using-phantom/)
- [How to Bridge To Injective Using Wormhole](https://injective.com/blog/how-to-bridge-to-injective-using-wormhole/)
- [How To Bridge From Cosmos To Injective Using Keplr](https://injective.com/blog/how-to-bridge-from-cosmos-to-injective-using-keplr/)

# Wallets

## `injectived`

Suitable for programmatic control, e.g. application or dApp-operated accounts.

Installation quick start:

```shell
wget https://github.com/InjectiveLabs/injective-chain-releases/releases/download/v1.14.1-1740773301/linux-amd64.zip
unzip linux-amd64.zip
sudo mv injectived /usr/bin
sudo mv libwasmvm.x86_64.so /usr/lib
injectived version
```

More options, including installation via Docker or compiling from source, are available in the reference page below.

Reference: [injectived](https://docs.injective.network/developers/injectived) 

## MetaMask

Suitable for retail users who need to interact with EVM DApps.

Installation:

- Get browser extension from [https://metamask.io/en-GB](https://metamask.io/en-GB) for your specific browser.
- Visit [https://blockscout.injective.network/](https://blockscout.injective.network/), scroll to the bottom of the page
- Click on the “Add Injective” button:
![](/assets/blockscout-add-injective-button.png "the add injective to metamask button in the footer of injective blockscout")

## Keplr

Keplr : [https://www.keplr.app](https://www.keplr.app)

Keplr API Docs for Integration: [https://docs.keplr.app/api/intro](https://docs.keplr.app/api/intro)

# Oracles

## API3

Price feeds: [Api3 Market | Injective EVM](https://market.api3.org/injective)

## Pyth

Announcement: [Pyth Mainnet Launches on Injective](https://injective.com/blog/pyth-mainnet-launches-on-injective/) 

## Chainlink

Reference repo: [Repo with Chainlink <> Injective OCR2 integration components and oracle](https://github.com/InjectiveLabs/chainlink-injective)