Skip to content

Commit 0123697

Browse files
authored
Merge pull request #164 from gnolang/feat/custom-signer
feat: Add custom signer support
2 parents 11b6c12 + 098f672 commit 0123697

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
},
5353
"dependencies": {
5454
"@cosmjs/ledger-amino": "^0.32.4",
55-
"@gnolang/tm2-js-client": "^1.2.2",
55+
"@gnolang/tm2-js-client": "^1.2.4",
5656
"long": "^5.2.3",
5757
"protobufjs": "^7.4.0"
5858
}

src/wallet/wallet.ts

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {
22
AccountWalletOption,
33
BroadcastTransactionMap,
44
CreateWalletOptions,
5+
Signer,
56
Tx,
67
TxFee,
78
Wallet,
@@ -37,6 +38,20 @@ export class GnoWallet extends Wallet {
3738
return gnoWallet;
3839
};
3940

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+
4055
/**
4156
* Generates a bip39 mnemonic-based wallet
4257
* @param {string} mnemonic the bip39 mnemonic

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -428,10 +428,10 @@
428428
dependencies:
429429
levn "^0.4.1"
430430

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==
435435
dependencies:
436436
"@cosmjs/amino" "^0.32.4"
437437
"@cosmjs/crypto" "^0.32.4"

0 commit comments

Comments
 (0)