triam-base
Version:
Low level triam network support library
31 lines (18 loc) • 1.31 kB
Markdown
---
title: Getting Started
---
# Overview
The js-triam-base library is the lowest-level triamnetwork helper library. It can be used in a browser or in node.js. It is mainly used to read, create and
sign [transactions](https://stellar.org/developers/learn/concepts/transactions.html). This library is used and exposed by
[js-triam-sdk](https://github.com/triamnetwork/js-triam-sdk) but you can use it by itself if you don't need to communicate with Horizon.
* [Building and Installing](../README.md) js-triamnetwork-base
* [Building Transactions](./reference/building-transactions.md)
* [Examples](./reference/base-examples.md)
js-triam-base exposes the following classes:
* [Account](https://github.com/triamnetwork/js-triam-base/blob/master/src/account.js)
* [Asset](https://github.com/triamnetwork/js-triam-base/blob/master/src/asset.js)
* [Keypair](https://github.com/triamnetwork/js-triam-base/blob/master/src/keypair.js)
* [Memo](https://github.com/triamnetwork/js-triam-base/blob/master/src/memo.js)
* [Operation](https://github.com/triamnetwork/js-triam-base/blob/master/src/operation.js)
* [Transaction](https://github.com/triamnetwork/js-triam-base/blob/master/src/transaction.js)
* [TransactionBuilder](https://github.com/triamnetwork/js-triam-base/blob/master/src/transaction_builder.js)