near / near-jsonrpc-client-rs

Lower-level API for interfacing with the NEAR Protocol via JSONRPC.
https://docs.rs/near-jsonrpc-client
Apache License 2.0
47 stars 41 forks source link

remove uuid api key requirement #119

Closed miraclx closed 1 year ago

miraclx commented 1 year ago

Resolves #116.

ApiKey::new no longer requires valid UUID input, this, in turn, expands the range of possible inputs to include byte arrays [u8; N] as well as byte slices &[u8]. Replacing ApiKey::as_str with ApiKey::to_str which now returns a Result.