@tronweb3/tronwallet-adapter-react-hooks 1.1.9 → 1.1.10

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 +2 -2
  3. package/package.json +5 -5
package/LICENSE CHANGED
@@ -1,5 +1,5 @@
1
1
  The MIT License (MIT)
2
- Copyright (c) 2022-Present, web3-geek
2
+ Copyright (c) 2022-Present, tronweb3
3
3
 
4
4
  Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -92,7 +92,7 @@ Used to specify what wallet adapters are supported. All wallet adapters can be i
92
92
  - Type: `(error: WalletError): void`
93
93
  - Default: `function(error) { console.error(error); }`
94
94
 
95
- Used to handle errors occured when use wallet. Developers can use the callback to tell users what happened according to the `error` type. All error types can be found [here](https://github.com/web3-geek/tronwallet-adapter/blob/main/packages/adapters/abstract-adapter/src/errors.ts).
95
+ Used to handle errors occured when use wallet. Developers can use the callback to tell users what happened according to the `error` type. All error types can be found [here](https://github.com/tronweb3/tronwallet-adapter/blob/main/packages/adapters/abstract-adapter/src/errors.ts).
96
96
 
97
97
  - Example
98
98
  ```jsx
@@ -229,7 +229,7 @@ enum AdapterState {
229
229
  #### select
230
230
 
231
231
  - Type: `(walletAdapterName: AdapterName) => void`
232
- Select a wallet by walletAdapterName. Valid adapters can be found [here](https://github.com/web3-geek/tronwallet-adapter/tree/main/packages/adapters/adapters)
232
+ Select a wallet by walletAdapterName. Valid adapters can be found [here](https://github.com/tronweb3/tronwallet-adapter/tree/main/packages/adapters/adapters)
233
233
 
234
234
  #### connect
235
235
 
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@tronweb3/tronwallet-adapter-react-hooks",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "A `useWallet()` hook to make it easy to interact with Tron wallets.",
5
5
  "keywords": [
6
6
  "TRON",
7
7
  "TronWeb",
8
8
  "adapter"
9
9
  ],
10
- "author": "web3-geek",
10
+ "author": "tronweb3",
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "https://github.com/web3-geek/tronwallet-adapter"
13
+ "url": "https://github.com/tronweb3/tronwallet-adapter"
14
14
  },
15
15
  "license": "MIT",
16
16
  "type": "module",
@@ -40,8 +40,8 @@
40
40
  "react-dom": "*"
41
41
  },
42
42
  "dependencies": {
43
- "@tronweb3/tronwallet-abstract-adapter": "^1.1.8",
44
- "@tronweb3/tronwallet-adapter-tronlink": "^1.1.11"
43
+ "@tronweb3/tronwallet-abstract-adapter": "^1.1.9",
44
+ "@tronweb3/tronwallet-adapter-tronlink": "^1.1.12"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/jest": "^27.5.2",