Skip to content

Commit 03327ec

Browse files
author
Michael Cohen
authored
Rename repo / package to stream-js (#74)
* Rename package references to stream-js * 0.0.4
1 parent 0904934 commit 03327ec

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In order to make onboarding easy, we've integrated the OpenSea Stream API with o
2929
## Create a client
3030

3131
```javascript
32-
import { OpenSeaStreamClient } from '@opensea/opensea-stream-js-sdk';
32+
import { OpenSeaStreamClient } from '@opensea/stream-js';
3333

3434
const client = new OpenSeaStreamClient({
3535
token: 'openseaApiKey'
@@ -64,7 +64,7 @@ Testnet supports events from the following blockchains: Rinkeby, Polygon testnet
6464
To create testnet instance of the client, you can create it with the following arguments:
6565

6666
```javascript
67-
import { OpenSeaStreamClient, Network } from '@opensea/opensea-stream-js-sdk';
67+
import { OpenSeaStreamClient, Network } from '@opensea/stream-js';
6868

6969
const client = new OpenSeaStreamClient({
7070
network: Network.TESTNET,

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In order to make onboarding easy, we've integrated the OpenSea Stream API with o
3636
## Create a client
3737

3838
```javascript
39-
import { OpenSeaStreamClient } from '@opensea/opensea-stream-js-sdk';
39+
import { OpenSeaStreamClient } from '@opensea/stream-js';
4040

4141
const client = new OpenSeaStreamClient({
4242
token: 'openseaApiKey'
@@ -71,7 +71,7 @@ Testnet supports events from the following blockchains: Rinkeby, Polygon testnet
7171
To create testnet instance of the client, you can create it with the following arguments:
7272

7373
```javascript
74-
import { OpenSeaStreamClient, Network } from '@opensea/opensea-stream-js-sdk';
74+
import { OpenSeaStreamClient, Network } from '@opensea/stream-js';
7575

7676
const client = new OpenSeaStreamClient({
7777
network: Network.TESTNET,

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "@opensea/opensea-stream-js-sdk",
3-
"version": "0.0.3",
2+
"name": "@opensea/stream-js",
3+
"version": "0.0.4",
44
"description": "An SDK to receive pushed updates from OpenSea over websocket",
55
"license": "MIT",
66
"author": "OpenSea Developers",
77
"homepage": "https://docs.opensea.io/reference/stream-api-overview",
8-
"repository": "https://github.com/ProjectOpenSea/opensea-stream-js-sdk",
8+
"repository": "https://github.com/ProjectOpenSea/stream-js",
99
"bugs": {
10-
"url": "https://github.com/ProjectOpenSea/opensea-stream-js-sdk/issues"
10+
"url": "https://github.com/ProjectOpenSea/stream-js/issues"
1111
},
1212
"main": "./dist/index.cjs",
1313
"module": "./dist/index.module.js",

0 commit comments

Comments
 (0)