pub type AsyncSigner = Box<dyn Fn(String) -> Pin<Box<dyn Future<Output = Vec<u8>> + Send>>>;
Async signer, use for non-wasm envirement, Send is necessary
pub struct AsyncSigner(/* private fields */);