-
Notifications
You must be signed in to change notification settings - Fork 351
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add makePathBuilder to make path builders
- Loading branch information
1 parent
52fade5
commit 22aac20
Showing
2 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import { Slip10RawIndex } from "@cosmjs/crypto"; | ||
import { makeCosmoshubPath } from "@cosmjs/proto-signing"; | ||
|
||
import { makePathBuilder, PathBuilder } from "./pathbuilder"; | ||
|
||
describe("pathbuilder", () => { | ||
describe("PathBuilder", () => { | ||
it("is compatible to makeCosmoshubPath", () => { | ||
const _builder: PathBuilder = makeCosmoshubPath; | ||
}); | ||
}); | ||
|
||
describe("makePathBuilder", () => { | ||
it("works", () => { | ||
const hub = makePathBuilder("m/44'/118'/0'/0/a"); | ||
expect(hub(0)).toEqual([ | ||
Slip10RawIndex.hardened(44), | ||
Slip10RawIndex.hardened(118), | ||
Slip10RawIndex.hardened(0), | ||
Slip10RawIndex.normal(0), | ||
Slip10RawIndex.normal(0), | ||
]); | ||
expect(hub(25)).toEqual([ | ||
Slip10RawIndex.hardened(44), | ||
Slip10RawIndex.hardened(118), | ||
Slip10RawIndex.hardened(0), | ||
Slip10RawIndex.normal(0), | ||
Slip10RawIndex.normal(25), | ||
]); | ||
|
||
const stellar = makePathBuilder("m/44'/148'/a'"); | ||
expect(stellar(0)).toEqual([ | ||
Slip10RawIndex.hardened(44), | ||
Slip10RawIndex.hardened(148), | ||
Slip10RawIndex.hardened(0), | ||
]); | ||
expect(stellar(42)).toEqual([ | ||
Slip10RawIndex.hardened(44), | ||
Slip10RawIndex.hardened(148), | ||
Slip10RawIndex.hardened(42), | ||
]); | ||
}); | ||
|
||
it("throws for invalid patterns", () => { | ||
// No `a` | ||
expect(() => makePathBuilder("m/44'/118'/0'/0/30")).toThrowError( | ||
/Missing account index variable `a` in pattern./i, | ||
); | ||
|
||
// Two `a` | ||
expect(() => makePathBuilder("m/44'/118'/a'/0/a")).toThrowError( | ||
/More than one account index variable `a` in pattern/i, | ||
); | ||
|
||
// Stray character | ||
expect(() => makePathBuilder("m/44'?/118'/0'/0/a")).toThrowError( | ||
/Syntax error while reading path component/i, | ||
); | ||
|
||
// Missing m/ | ||
expect(() => makePathBuilder("44'/118'/0'/0/a")).toThrowError(/Path string must start with 'm'/i); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { HdPath, stringToPath } from "@cosmjs/crypto"; | ||
|
||
export type PathBuilder = (account_index: number) => HdPath; | ||
|
||
/** | ||
* Insert a BIP32 path that contains a valiable `a` for the numeric account index. | ||
* This variable will be replaces when the path builder is used. | ||
* | ||
* @param pattern, e.g. m/44'/148'/a' for Stellar paths | ||
*/ | ||
export function makePathBuilder(pattern: string): PathBuilder { | ||
if (pattern.indexOf("a") === -1) throw new Error("Missing account index variable `a` in pattern."); | ||
if (pattern.indexOf("a") !== pattern.lastIndexOf("a")) { | ||
throw new Error("More than one account index variable `a` in pattern."); | ||
} | ||
|
||
const builder: PathBuilder = function (a: number): HdPath { | ||
const path = pattern.replace("a", a.toString()); | ||
return stringToPath(path); | ||
}; | ||
|
||
// test builder | ||
const _path = builder(0); | ||
|
||
return builder; | ||
} |