@axia-core/txwrapper-core
Core components for creating a txwrapper lib.
yarn add @axia-core/txwrapper-core
In a JS/TS index file of package:
import { methods as ORMLMethods } from '@axia-core/txwrapper-orml';
// Export methods of pallets included in the chain's runtime.
export const methods = {
currencies: ORMLMethods.currencies,
};
Have a look at the txwrapper creation guide for chain builders to see more guidance on how to use this package to build a chain specific txwrapper.