add subxt to subxt-signer default features

This commit is contained in:
Tadeo hepperle
2023-10-06 10:27:02 +02:00
parent 919b866c0f
commit 26b203dede
6 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ description = "Sign extrinsics to be submitted by Subxt"
keywords = ["parity", "subxt", "extrinsic", "signer"]
[features]
default = ["sr25519", "ecdsa"]
default = ["sr25519", "ecdsa", "subxt"]
# Pick the signer implementation(s) you need by enabling the
# corresponding features. Note: I had more difficulties getting
+3 -1
View File
@@ -1,3 +1,5 @@
# Subxt-signer
This library exposes a small, WASM compatible signer implementation which can be used in conjunction with Subxt to sign transactions.
This library exposes a small, WASM compatible signer implementation which can be used in conjunction with Subxt to sign transactions.
This library can be used without Subxt by disabling the `subxt` feature flag, which is enabled by default.