Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# State Transition SDK

Generic State Transition Flow engine for value-carrier agents on the Unicity Network.
An SDK for defining and managing the lifecycle of stateful assets on the Unicity Protocol.

## Overview

Expand Down Expand Up @@ -51,7 +51,7 @@ const token = new Token(
Transfer
```typescript
// Create aggregator client
const aggregatorClient = new AggregatorClient('https://gateway-test.unicity.network:443');
const aggregatorClient = new AggregatorClient('https://gateway-test.unicity.network');
const client = new StateTransitionClient(aggregatorClient);

// Transfer token to recipient
Expand Down Expand Up @@ -192,7 +192,7 @@ npm run test:integration
Run end-to-end tests only.

```bash
AGGREGATOR_URL='https://aggregator.devnet.alphabill.org' npm run test:e2e
AGGREGATOR_URL='https://gateway-test.unicity.network' npm run test:e2e
```

### Linting
Expand All @@ -203,7 +203,7 @@ npm run lint

## Network Configuration

- **Test Gateway**: `https://gateway-test.unicity.network:443`
- **Test Gateway**: `https://gateway-test.unicity.network`
- **Default Token Type**: Configurable via TokenType enum

## Examples
Expand Down Expand Up @@ -335,7 +335,7 @@ const status = await client.getTokenStatus(token);
### The Token Split Operation

```typescript
const client = new StateTransitionClient(new AggregatorClient('https://gateway-test.unicity.network:443'));
const client = new StateTransitionClient(new AggregatorClient('https://gateway-test.unicity.network'));

// First, let's mint a token in the usual way.
const sumTreeHasherFactory = new DataHasherFactory(NodeDataHasher);
Expand Down Expand Up @@ -627,8 +627,8 @@ This project is licensed under the MIT License - see the LICENSE file for detail

- **Repository**: [GitHub](https://github.com/unicitynetwork/state-transition-sdk)
- **Issues**: [GitHub Issues](https://github.com/unicitynetwork/state-transition-sdk/issues)
- **Gateway API**: `https://gateway-test.unicity.network:443`
- **Gateway API**: `https://gateway-test.unicity.network`

---

**Note**: This SDK is part of the Unicity ecosystem. For production use, ensure you understand the security implications and test thoroughly in the testnet environment.
**Note**: This SDK is part of the Unicity ecosystem. For production use, ensure you understand the security implications and test thoroughly in the testnet environment.