Skip to content
Open
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @blockless/sdk-ts
# @blessnetwork/sdk-ts

This sdk is designed to work with Javascript/Typescript and compile for the BLESS Javy WASM Engine. As such this engine does not have full support for Node / Web APIs, but a majority of pure JavaScript will work, including some of those from the `npm` ecosystem.

Expand All @@ -18,15 +18,15 @@ npx blessnet init
## Install this SDK

```bash
$ yarn add @blockless/sdk-ts
$ yarn add @blessnetwork/sdk-ts
# or using npm
$ npm i @blockless/sdk-ts
$ npm i @blessnetwork/sdk-ts
```

## Example of using this SDK.

```ts
import { InputProps, entryMain } from '@blockless/sdk-ts'
import { InputProps, entryMain } from '@blessnetwork/sdk-ts'
import { AbiCoder } from 'ethers'

interface Arguments {
Expand Down