> ## Documentation Index
> Fetch the complete documentation index at: https://docs.resq.software/llms.txt
> Use this file to discover all available pages before exploring further.

# ResQ.Blockchain.NeoClientOptions.RpcUrl

### [ResQ.Blockchain](./ResQ.Blockchain.md "ResQ.Blockchain").[NeoClientOptions](./ResQ.Blockchain.NeoClientOptions.md "ResQ.Blockchain.NeoClientOptions")

## NeoClientOptions.RpcUrl Property

Gets or sets the Neo N3 RPC endpoint URL.

```csharp theme={null}
public string RpcUrl { get; set; }
```

#### Property Value

[System.String](https://learn.microsoft.com/en-us/dotnet/api/system.string "System.String")\
The RPC endpoint URL. Default is `"http://localhost:10332"`.

### Example

```csharp theme={null}
options.RpcUrl = "https://testnet1.neo.coz.io:443";
```

### Remarks

This should point to a Neo N3 RPC node. For testnet, use a public endpoint like
`"https://testnet1.neo.coz.io:443"`. For mainnet, use a reliable node provider.
