# CEP\_Account.setNetwork()

## Function Signature

```javascript
setNetwork(network)
```

## Parameters

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

## Example&#x20;

```javascript
const Address = 'your-wallet-address';

let account = new CEP_Account();

//...
account.setNetwork("mainnet"); //Chose between mainnet, testnet and devnet
    
//...
```
