> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://sdk.railnet.org/api/mcp` to find what you need.

# Asset

Represents an asset with a specific value, used in conduit operations.

## Import

```ts
import type { Asset } from '@railnetorg/railnet-sdk'
```

## Definition

```ts
type Asset = {
  asset: Address
  value: bigint
}
```

## Properties

### asset

* **Type:** `Address`

The address of the asset contract.

### value

* **Type:** `bigint`

The value or amount of the asset.
