import HDNode from "lux/dist/utils/hdnode" const main = async (): Promise => { const seed: string = "a0c42a9c3ac6abf2ba6a9946ae83af18f51bf1c9fa7dacc4c92513cc4dd015834341c775dcd4c0fac73547c5662d81a9e9361a0aac604a73a321bd9103bce8af" const fromSeed: HDNode = new HDNode(seed) const child = fromSeed.derive("m/9000'/2614666'/4849181'/4660'/2'/1/3") console.log(child) } main()