# Advanced

To override the address of one of the contracts used by Dai.js or a plugin, you can pass the `smartContract.addressOverrides` option. You need to know the key of the contract in the addresses file to override it.

[List of mainnet addresses](https://github.com/makerdao/dai.js/blob/dev/packages/dai/contracts/addresses/mainnet.json)

```javascript
const service = Maker.create('test' {
  smartContract: {
    addressOverrides: {
      PROXY_REGISTRY: '0xYourAddress'
    }
  } 
});
```


---

# 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://docs.makerdao.com/build/dai.js/advanced-configuration.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.
