diff --git a/examples/integration-scripts/externalModule.ts b/examples/integration-scripts/externalModule.ts index 4329e6b0..9765c2a9 100644 --- a/examples/integration-scripts/externalModule.ts +++ b/examples/integration-scripts/externalModule.ts @@ -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); } diff --git a/examples/integration-scripts/salty.ts b/examples/integration-scripts/salty.ts index e25bb563..281881e3 100644 --- a/examples/integration-scripts/salty.ts +++ b/examples/integration-scripts/salty.ts @@ -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']; diff --git a/package.json b/package.json index 55eecd6e..e4d5deab 100644 --- a/package.json +++ b/package.json @@ -23,12 +23,6 @@ "pre-commit": "tsdx lint" } }, - "prettier": { - "printWidth": 80, - "semi": true, - "singleQuote": true, - "trailingComma": "es5" - }, "name": "signify-ts", "author": "Phil Feairheller", "module": "dist/signify-ts.esm.js",