@particle-network/universal-account-sdk 1.0.4 → 1.0.5-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +40 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.mjs +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [1.0.6] - 2025-10-15
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- Added `warmUpToken` method to pre-warm token asset routing for faster subsequent transactions
|
|
7
|
+
- Supports specifying the token to warm up via `chainId` and `address`
|
|
8
|
+
|
|
9
|
+
## [1.0.5]
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
- Added `tradeConfig` parameter support for `createConvertTransaction`
|
|
13
|
+
- Added `tradeConfig` parameter support for `createUniversalTransaction`
|
|
14
|
+
- Added `addressLookupTableAccountAddresses` option to `tradeConfig`
|
|
15
|
+
|
|
16
|
+
[1.0.6]: https://github.com/Particle-Network/universal-account-sdk/compare/v1.0.5...v1.0.6
|
|
17
|
+
[1.0.5]: https://github.com/Particle-Network/universal-account-sdk/releases/tag/v1.0.5
|
|
18
|
+
|
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Universal Account SDK
|
|
2
|
+
|
|
3
|
+
Universal Account SDK provides a unified interface for interacted with universal account.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @particle-network/universal-account-sdk
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
or
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
yarn add @particle-network/universal-account-sdk
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
- 🔄 Cross-chain transactions support (EVM and Solana)
|
|
20
|
+
- 💰 Buy, sell, transfer, and convert tokens
|
|
21
|
+
- ⛽ Universal Gas support
|
|
22
|
+
- 🔐 Smart account management
|
|
23
|
+
- 📊 Primary assets query
|
|
24
|
+
- 🚀 Token warm-up for faster transactions
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## Examples
|
|
29
|
+
|
|
30
|
+
See the [demos](https://github.com/GDdark/universal-account-example) directory for more examples.
|
|
31
|
+
|
|
32
|
+
## Changelog
|
|
33
|
+
|
|
34
|
+
For a detailed list of changes and version history, please refer to the [CHANGELOG.md](./CHANGELOG.md).
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
ISC
|
|
39
|
+
|
|
40
|
+
|