> For the complete documentation index, see [llms.txt](https://docs.av-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.av-scripts.com/laptop-pack/dark-market/money-accounts.md).

# Money Accounts

{% hint style="info" %}
Money accounts table can be found in server/editable/\_config.lua
{% endhint %}

The `Config.MoneyAccounts` table defines the different currencies and payment methods available to players within the marketplace. Each entry in this list represents a valid account that can be used to process transactions.

```lua
Config.MoneyAccounts = { -- Money accounts used to buy items
    {value = "cosmo", label = "Cosmo"},
    {value = "bank", label = "Bank"},
}
```
