https://github.com/abstractsdk/abstract.js
This monorepo contains the Typescript-based SDKs for AbstractSDK.
https://github.com/abstractsdk/abstract.js
abstract-sdk cosmwasm ibc
Last synced: about 1 year ago
JSON representation
This monorepo contains the Typescript-based SDKs for AbstractSDK.
- Host: GitHub
- URL: https://github.com/abstractsdk/abstract.js
- Owner: AbstractSDK
- License: mit
- Created: 2022-05-09T13:33:57.000Z (about 4 years ago)
- Default Branch: mainline
- Last Pushed: 2025-01-31T17:15:19.000Z (over 1 year ago)
- Last Synced: 2025-03-27T04:01:41.969Z (about 1 year ago)
- Topics: abstract-sdk, cosmwasm, ibc
- Language: TypeScript
- Homepage:
- Size: 6.79 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Abstract Typescript SDKs
This monorepo contains the Typescript-based SDKs for AbstractSDK. Please [read the docs](https://js.abstract.money)!
## Development
1. Install the Abstract CLI:
```bash
npm i -g @abstract-money/cli
```
## Prerequisites
- Ensure you have Node.js installed.
- Install `pnpm` globally:
```bash
npm i -g pnpm
```
## Setup
1. **Clone the Repository**:
```bash
git clone https://github.com/AbstractSDK/core.git abstractjs
cd abstractjs
```
2. **Install Dependencies**:
```bash
pnpm i
```
3. **Build the Repository**:
We use turbo-build to build the repository. This will build all packages in parallel.
```bash
pnpm build
```
## Types
We have tried to make this repository compatible with both ESM and CJS, following guides from https://johnnyreilly.com/dual-publishing-esm-cjs-modules-with-tsup-and-are-the-types-wrong.
To check the types are exported properly, run the commands in the packages in which you're interested:
```bash
npx --yes @arethetypeswrong/cli --pack .
```