Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Looijenga committed Nov 8, 2023
1 parent 3f996fb commit ebf819e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion packages/apps/tools/src/pact/faucet/deploy/createAdmin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChainwebChainId } from '@kadena/chainweb-node-client';
import type { ChainwebChainId } from '@kadena/chainweb-node-client';
import { createClient, Pact, readKeyset } from '@kadena/client';

import {
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/tools/src/pact/faucet/deploy/deployFaucet.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChainwebChainId } from '@kadena/chainweb-node-client';
import type { ChainwebChainId } from '@kadena/chainweb-node-client';
import { createClient, Pact } from '@kadena/client';

import { DOMAIN, GAS_PROVIDER, NETWORK_ID } from './constants';
Expand Down
11 changes: 3 additions & 8 deletions packages/apps/tools/src/pact/faucet/deploy/fundAdmin.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import { ChainwebChainId } from '@kadena/chainweb-node-client';
import {
createClient,
ICommand,
IUnsignedCommand,
Pact,
readKeyset,
} from '@kadena/client';
import type { ChainwebChainId } from '@kadena/chainweb-node-client';
import type { ICommand, IUnsignedCommand } from '@kadena/client';
import { Pact, createClient, readKeyset } from '@kadena/client';

import {
ADMINS,
Expand Down
4 changes: 2 additions & 2 deletions packages/apps/tools/src/pact/faucet/deploy/fundFaucet.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChainwebChainId } from '@kadena/chainweb-node-client';
import type { ChainwebChainId } from '@kadena/chainweb-node-client';
import { createClient, Pact } from '@kadena/client';
import { IPactDecimal } from '@kadena/types';
import type { IPactDecimal } from '@kadena/types';

import {
ADMINS,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChainwebChainId } from '@kadena/chainweb-node-client';
import type { ChainwebChainId } from '@kadena/chainweb-node-client';
import { createClient, Pact, readKeyset } from '@kadena/client';

import { ADMINS, DOMAIN, GAS_PROVIDER, NETWORK_ID } from './constants';
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/tools/src/pact/faucet/deploy/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { isSignedTransaction } from '@kadena/client';
import { sign } from '@kadena/cryptography-utils';
import { ICommand, IKeyPair, IUnsignedCommand } from '@kadena/types';
import type { ICommand, IKeyPair, IUnsignedCommand } from '@kadena/types';

export const signTransaction = (
transaction: IUnsignedCommand,
Expand Down

0 comments on commit ebf819e

Please sign in to comment.