Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.15 KB

File metadata and controls

36 lines (28 loc) · 1.15 KB



@substrate/txwrapper-orml

Selected dispatchables of ORML pallets, to be re-exported by chain specific txwrappers

npm Github Actions david-dm



yarn add @substrate/txwrapper-orml

In a JS/TS index file of package:

import { methods as ORMLMethods } from '@substrate/txwrapper-orml';

// Export methods of pallets included in the chain
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 in a chain specific txwrapper.