Testnet v3.

This commit is contained in:
muzam1l
2023-02-06 21:09:11 +05:30
parent d2033c8035
commit 76871a8041
13 changed files with 3060 additions and 1676 deletions

View File

@@ -0,0 +1,7 @@
import { XrplClient } from 'xrpl-client';
import state from '..';
export const xrplSend = async(...params: Parameters<XrplClient['send']>) => {
const client = await state.client.ready()
return client.send(...params);
}