
TheFutureStartsHere
TheFutureStartsHere
Level up your dApp — apply to an Injective Accelerator today!
•
About Injective




The hyper scale layer 1 for everything finance.
Plug and play modules
Injective accelerates development with pre-built modules and performant parallel execution environments. By abstracting financial components, developers can build high fidelity applications with zero barriers to building on-chain.
Integrated MultiVM
Lightning Fast. Lowest Costs.
Unified Liquidity
Unmatched Developer Support
About Injective
The hyper scale layer 1 for everything finance.





Plug and play modulesInjective accelerates development with pre-built modules and performant parallel execution environments. By abstracting financial components, developers can build high fidelity applications with zero barriers to building on-chain.
Start Here
Build faster than ever before
with Injective.
Start Here
Robust Architecture
Integrated Infrastructure ReimaginedUnlock infinite possibilities with Injective. Leverage the only purpose built chain for finance to supercharge your application with cutting-edge Web3 primitives, innovative real world assets and programmable artificial intelligence.
Injective in Action
Injective is the only L1 offering plug-and-play modules that can be customized and integrated into your app in seconds. Tap into world-class primitives and institutional-grade liquidity without starting from scratch.
export const streamDerivativeMarketOrderbook = async (
marketId: string,
) => {
const streamOrderbookUpdates = indexerDerivativesStream.streamDerivativeOrderbookUpdate.bind(indexerDerivativesStream)
const callback = (orderbookUpdate) => {
console.log(orderbookUpdate)
}
streamOrderbookUpdates(marketId, callback)
}