# CEP\_Account.setNetwork()

### Function Signature

```php
public function setNetwork(string $network): bool
```

### Parameters

| Parameter Name | Datatype |
| -------------- | -------- |
| `$network`     | String   |

### Example

```php
use Circularprotocol\Circularenterpriseapis\CEP_Account;

//...
$account->setNetwork("mainnet"); //Chose between mainnet, testnet and devenet
//...
```
