Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove conflicting prettier config in package.json #119

Merged
merged 2 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions examples/integration-scripts/externalModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,11 @@ async function run() {
state1.agent.i
);
let words = new BIP39Shim(0, {}).generateMnemonic(256);
let icpResult = await client1
.identifiers()
.create('aid1', {
algo: signify.Algos.extern,
extern_type: 'bip39_shim',
extern: { mnemonics: words },
});
let icpResult = await client1.identifiers().create('aid1', {
algo: signify.Algos.extern,
extern_type: 'bip39_shim',
extern: { mnemonics: words },
});
let op = await icpResult.op();
assert.equal(op['done'], true);
}
16 changes: 7 additions & 9 deletions examples/integration-scripts/salty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,13 @@ async function run() {
assert.equal(salt.stem, 'signify:aid');
assert.equal(aid.prefix, icp.pre);

icpResult = await client1
.identifiers()
.create('aid2', {
count: 3,
ncount: 3,
isith: '2',
nsith: '2',
bran: '0123456789lmnopqrstuv',
});
icpResult = await client1.identifiers().create('aid2', {
count: 3,
ncount: 3,
isith: '2',
nsith: '2',
bran: '0123456789lmnopqrstuv',
});
op = await icpResult.op();
assert.equal(op['done'], true);
const aid2 = op['response'];
Expand Down
Loading
Loading