port subxt-signer to no-std (such a pain)

This commit is contained in:
Tadeo hepperle
2024-02-02 14:39:03 +01:00
parent 930f2c4300
commit 14b21ab0df
13 changed files with 378 additions and 62 deletions
+8
View File
@@ -49,6 +49,14 @@ fn subxt_metadata_test() {
subxt_metadata::Metadata::decode(&mut &METADATA[..]).expect("should be valid metadata");
}
fn subxt_signer_test() {
use subxt_signer::{ SecretUri, ecdsa::Keypair };
use core::str::FromStr;
let uri = SecretUri::from_str("//Alice").unwrap();
let keypair = Keypair::from_uri(&uri).unwrap();
}
fn subxt_core_test() {
let _ = subxt_core::utils::Era::Immortal;
}