File tree 3 files changed +20
-5
lines changed
3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 52
52
},
53
53
"dependencies" : {
54
54
"@cosmjs/ledger-amino" : " ^0.32.4" ,
55
- "@gnolang/tm2-js-client" : " ^1.2.2 " ,
55
+ "@gnolang/tm2-js-client" : " ^1.2.4 " ,
56
56
"long" : " ^5.2.3" ,
57
57
"protobufjs" : " ^7.4.0"
58
58
}
Original file line number Diff line number Diff line change 2
2
AccountWalletOption ,
3
3
BroadcastTransactionMap ,
4
4
CreateWalletOptions ,
5
+ Signer ,
5
6
Tx ,
6
7
TxFee ,
7
8
Wallet ,
@@ -37,6 +38,20 @@ export class GnoWallet extends Wallet {
37
38
return gnoWallet ;
38
39
} ;
39
40
41
+ /**
42
+ * Generates a custom signer-based wallet
43
+ * @param {Signer } signer the custom signer implementing the Signer interface
44
+ * @param {CreateWalletOptions } options the wallet generation options
45
+ */
46
+ static override fromSigner = async ( signer : Signer ) : Promise < GnoWallet > => {
47
+ const wallet = await Wallet . fromSigner ( signer ) ;
48
+
49
+ const gnoWallet : GnoWallet = new GnoWallet ( ) ;
50
+ gnoWallet . signer = wallet . getSigner ( ) ;
51
+
52
+ return gnoWallet ;
53
+ } ;
54
+
40
55
/**
41
56
* Generates a bip39 mnemonic-based wallet
42
57
* @param {string } mnemonic the bip39 mnemonic
Original file line number Diff line number Diff line change 428
428
dependencies :
429
429
levn "^0.4.1"
430
430
431
- " @gnolang/tm2-js-client@^1.2.2 " :
432
- version "1.2.2 "
433
- resolved "https://registry.yarnpkg.com/@gnolang/tm2-js-client/-/tm2-js-client-1.2.2 .tgz#b143a2fb6e76a803412dacdf8c017a031390535f "
434
- integrity sha512-mI+vVulUKawXGono+6udT6VkkKo6E+kX0lcyRIp2Yvk5GwoxoExiKDAY/EYNC3OUKJebjh52nVTVkKZnSfW0GQ ==
431
+ " @gnolang/tm2-js-client@^1.2.4 " :
432
+ version "1.2.4 "
433
+ resolved "https://registry.yarnpkg.com/@gnolang/tm2-js-client/-/tm2-js-client-1.2.4 .tgz#7f7da6f7e8ad7a48e43438b12153e2e74f49b919 "
434
+ integrity sha512-zZpqtJD4TXi2UKIsTHJ2t3vqPOkfK9eh66+KOvVjYksgsjtEHl1MRFHL5XKlcclTdjq8aG8PTzovnp0hGSWwgA ==
435
435
dependencies :
436
436
" @cosmjs/amino" " ^0.32.4"
437
437
" @cosmjs/crypto" " ^0.32.4"
You can’t perform that action at this time.
0 commit comments