> For the complete documentation index, see [llms.txt](https://obytejs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://obytejs.com/0.1.17/post/address-definition-change.md).

# Address definition change

### **Arguments**

* **definition\_chash** `string` *required*\
  Indicates the checksummed hash of the new address definition.
* **address** `string` *optional*\
  When multi-authored, must indicate address.

### Returns

Returns the unit hash.

Example

```javascript
const params = {
  definition_chash: 'I4Z7KFNIYTPHPJ5CA5OFC273JQFSZPOX',
};

client.post.addressDefinitionChange(params, wif, function(err, result) {
  if (err) return console.error(err);
  console.log(result);
});
```

### **Learn more**

* 21\. Addresses (page 23) <https://obyte.org/Byteball.pdf>
