> For the complete documentation index, see [llms.txt](https://dev.spectra.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.spectra.finance/integration-reference/spectra-oracles/oracle-deployment/twap-and-hybrid-oracles-deployment.md).

# TWAP and Hybrid Oracles Deployment

### Overview

To deploy a standard TWAP Oracle, as well as a hybrid oracle, you can use the `TwapOracleFactorySNG` ,

### Deployment

Deployment of Spectra TWAP oracles as well as the hybrid oracle is done through the `deployOracle()`  method described below

```solidity
    /**
     * @notice Deploys an oracle for a given principal token, pool, and oracle type
     * @param _pt The address of the principal token
     * @param _pool The address of the pool
     * @param _impliedRate The implied rate. Relevant only for hybrid oracles
     *                     1e18 represents 100%, so for example an implied rate of 30%
     *.                    is represesnted
     * @return oracleAddress The address of the deployed oracle
     */
    function deployOracle(
        address _pt,
        address _pool,
        uint256 _impliedRate,
        OracleType _oracleType
    ) external returns (address oracleAddress)
```

It deploys an oracle of `_oracleType` for a market composed of a PT of address `_pt` and of market address `_pool` . The `OracleType _oracleType` field allows you to choose the type of oracle you want to deploy.  The `_impliedRate` field is used exclusively for the [Hybrid Oracle](/integration-reference/spectra-oracles/hybrid-oracles.md) and ignored otherwise. The possible types are

```solidity
enum OracleType {
        PTIBT,
        PTUND,
        YTIBT,
        YTUND,
        LPIBT,
        LPUND,
        PTUNDHYBRID
    }
```

The possible types specify the base asset (PT, YT, LP) followed by the quote asset (IBT, Underlying).&#x20;


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://dev.spectra.finance/integration-reference/spectra-oracles/oracle-deployment/twap-and-hybrid-oracles-deployment.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
