# 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: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
