@frontiertower/frontier-sdk 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -9,14 +9,14 @@ Check out [**frontier-kickstarter**](https://github.com/BerlinhouseLabs/frontier
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- npm install @frontier-wallet/sdk
12
+ npm install @frontiertower/frontier-sdk
13
13
  ```
14
14
 
15
15
  ## Quick Start
16
16
 
17
17
  ```typescript
18
- import { FrontierSDK } from '@frontier-wallet/sdk';
19
- import { isInFrontierApp, renderStandaloneMessage } from '@frontier-wallet/sdk/ui-utils';
18
+ import { FrontierSDK } from '@frontiertower/frontier-sdk';
19
+ import { isInFrontierApp, renderStandaloneMessage } from '@frontiertower/frontier-sdk/ui-utils';
20
20
 
21
21
  // Initialize the SDK
22
22
  const sdk = new FrontierSDK();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frontiertower/frontier-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "SDK for building apps on Frontier Wallet",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -44,6 +44,6 @@
44
44
  },
45
45
  "repository": {
46
46
  "type": "git",
47
- "url": "https://github.com/frontiertower/frontier-sdk.git"
47
+ "url": "git+https://github.com/frontiertower/frontier-sdk.git"
48
48
  }
49
49
  }