@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.
- package/LICENSE +1 -1
- package/README.md +51 -0
- package/package.json +5 -5
package/LICENSE
CHANGED
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
|
+
[](https://www.npmjs.com/package/@partylayer/adapter-bron)
|
|
8
|
+
[](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
|
+
"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/
|
|
27
|
+
"url": "https://github.com/PartyLayer/PartyLayer.git",
|
|
28
28
|
"directory": "packages/adapters/bron"
|
|
29
29
|
},
|
|
30
|
-
"homepage": "https://github.com/
|
|
30
|
+
"homepage": "https://github.com/PartyLayer/PartyLayer#readme",
|
|
31
31
|
"bugs": {
|
|
32
|
-
"url": "https://github.com/
|
|
32
|
+
"url": "https://github.com/PartyLayer/PartyLayer/issues"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@partylayer/core": "0.2.
|
|
35
|
+
"@partylayer/core": "0.2.4"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/node": "^20.11.0",
|