Begin work on the new RPC for the new node

This commit is contained in:
Luke Parker
2025-11-06 03:08:43 -05:00
parent aff2065c31
commit 1866bb7ae3
20 changed files with 378 additions and 118 deletions

View File

@@ -1,11 +1,11 @@
[package]
name = "serai-client-monero"
version = "0.1.0"
description = "Monero client library for the Serai network"
description = "A client for the Serai network's Monero functionality"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/client/monero"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = ["serai"]
keywords = ["serai", "monero"]
edition = "2021"
rust-version = "1.85"

View File

@@ -0,0 +1,3 @@
# serai-client Monero
A client for the Serai network's Monero functionality.

View File

@@ -1,3 +1,7 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]
use core::{str::FromStr, fmt};
use dalek_ff_group::{EdwardsPoint, Ed25519};