-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: vat-safe denomHash using noble sha256
- @noble/hashes dependency - unit test using bundle Co-Authored-By: Turadg Aleahmad <[email protected]>
- Loading branch information
Showing
5 changed files
with
55 additions
and
1 deletion.
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
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,22 @@ | ||
// @ts-check | ||
import { sha256 } from '@noble/hashes/sha256'; | ||
import { bytesToHex } from '@noble/hashes/utils'; | ||
|
||
/** | ||
* cf. https://tutorials.cosmos.network/tutorials/6-ibc-dev/ | ||
* | ||
* @param {object} opts | ||
* @param {string} [opts.portId] | ||
* @param {string} [opts.channelId] required unless `path` is supplied | ||
* @param {string} [opts.path] alternative to portId, channelId | ||
* @param {string} opts.denom base denom | ||
*/ | ||
export const denomHash = ({ | ||
portId = 'transfer', | ||
channelId = /** @type {string | undefined} */ (undefined), | ||
path = `${portId}/${channelId}`, | ||
denom, | ||
}) => { | ||
const h = sha256.create().update(`${path}/${denom}`).digest(); | ||
return bytesToHex(h).toUpperCase(); | ||
}; |
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,18 @@ | ||
import test from '@endo/ses-ava/prepare-endo.js'; | ||
|
||
import bundleSource from '@endo/bundle-source'; | ||
import { importBundle } from '@endo/import-bundle'; | ||
import { createRequire } from 'node:module'; | ||
import { denomHash } from '../../src/utils/denomHash.js'; | ||
|
||
const nodeRequire = createRequire(import.meta.url); | ||
|
||
test('compartment use of denomHash', async t => { | ||
const bundle = await bundleSource(nodeRequire.resolve('./denomHashEx.js')); | ||
const { length } = JSON.stringify(bundle); | ||
t.log('bundle length', length); | ||
const expected = denomHash({ channelId: 'channel-0', denom: 'uatom' }); | ||
|
||
const { denomHashExample } = await importBundle(bundle); | ||
t.deepEqual(denomHashExample(), expected); | ||
}); |
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,6 @@ | ||
import { denomHash } from '../../src/utils/denomHash.js'; | ||
|
||
export const denomHashExample = () => { | ||
const h = denomHash({ channelId: 'channel-0', denom: 'uatom' }); | ||
return h; | ||
}; |
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 |
---|---|---|
|
@@ -2780,6 +2780,11 @@ | |
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.1.2.tgz#e9e035b9b166ca0af657a7848eb2718f0f22f183" | ||
integrity sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA== | ||
|
||
"@noble/hashes@^1.4.0": | ||
version "1.4.0" | ||
resolved "https://registry.yarnpkg.com/@noble/hashes/-/hashes-1.4.0.tgz#45814aa329f30e4fe0ba49426f49dfccdd066426" | ||
integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg== | ||
|
||
"@nodelib/[email protected]": | ||
version "2.1.5" | ||
resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" | ||
|