@partylayer/adapter-bron 0.2.3 → 0.2.4

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 (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +51 -0
  3. package/package.json +5 -5
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 CantonConnect
3
+ Copyright (c) 2024 PartyLayer
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # @partylayer/adapter-bron
2
+
3
+ <div align="center">
4
+
5
+ **Bron Wallet adapter for PartyLayer**
6
+
7
+ [![npm version](https://img.shields.io/npm/v/@partylayer/adapter-bron.svg?style=flat-square)](https://www.npmjs.com/package/@partylayer/adapter-bron)
8
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/licenses/MIT)
9
+
10
+ </div>
11
+
12
+ ---
13
+
14
+ ## Overview
15
+
16
+ Adapter for the [Bron Wallet](https://www.canton.network/ecosystem/bron-wallet), an enterprise remote signer using OAuth2 authentication and API-based signing.
17
+
18
+ > **Note**: This adapter is included in `@partylayer/sdk` by default. You only need to install it separately if building a custom setup.
19
+
20
+ ---
21
+
22
+ ## Installation
23
+
24
+ ```bash
25
+ npm install @partylayer/adapter-bron
26
+ ```
27
+
28
+ ---
29
+
30
+ ## Usage with SDK
31
+
32
+ ```typescript
33
+ import { createPartyLayer } from '@partylayer/sdk';
34
+
35
+ const client = createPartyLayer({ network: 'devnet' });
36
+ await client.connect({ walletId: 'bron' });
37
+ ```
38
+
39
+ ---
40
+
41
+ ## Links
42
+
43
+ - [GitHub Repository](https://github.com/PartyLayer/PartyLayer)
44
+ - [Bron Developer Portal](https://developer.bron.org/)
45
+ - [Report Issues](https://github.com/PartyLayer/PartyLayer/issues)
46
+
47
+ ---
48
+
49
+ ## License
50
+
51
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@partylayer/adapter-bron",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Bron Wallet adapter for PartyLayer",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -24,15 +24,15 @@
24
24
  "license": "MIT",
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://github.com/cayvox/PartyLayer.git",
27
+ "url": "https://github.com/PartyLayer/PartyLayer.git",
28
28
  "directory": "packages/adapters/bron"
29
29
  },
30
- "homepage": "https://github.com/cayvox/PartyLayer#readme",
30
+ "homepage": "https://github.com/PartyLayer/PartyLayer#readme",
31
31
  "bugs": {
32
- "url": "https://github.com/cayvox/PartyLayer/issues"
32
+ "url": "https://github.com/PartyLayer/PartyLayer/issues"
33
33
  },
34
34
  "dependencies": {
35
- "@partylayer/core": "0.2.3"
35
+ "@partylayer/core": "0.2.4"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@types/node": "^20.11.0",