@zeriontech/transactions
v0.0.16
Published
Components used for creating transaction related UIs in web apps
Downloads
515
Readme
@zeriontech/transactions
These modules are used to manage state that's needed for building Zerion Send ans Swap forms
Get Started
Install
npm install @zeriontech/transactions
Use
import { useSendForm } from '@zeriontech/components';
import type { SendFormView } from '@zeriontech/components';
function SendForm() {
const sendView: SendFormView = useSendForm({
currencyCode: 'usd',
DEFAULT_CONFIGURATION,
address,
positions,
getNetworks: () => networksStore.load(),
client
});
return <form />;
}