Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ppedziwiatr committed Jan 13, 2023
1 parent 185c2f7 commit ffd2c41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contract/deploy/CreateContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export type EvaluationManifest = {
};

export const BUNDLR_NODES = ['node1', 'node2'] as const;
export type BundlrNodeType = (typeof BUNDLR_NODES)[number];
export type BundlrNodeType = typeof BUNDLR_NODES[number];

export interface CommonContractData {
wallet: ArWallet | CustomSignature;
Expand Down
2 changes: 1 addition & 1 deletion src/core/WarpPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const knownWarpPlugins = [
'fetch-options'
] as const;
type WarpPluginPartialType = `smartweave-extension-${string}`;
export type WarpKnownPluginType = (typeof knownWarpPlugins)[number];
export type WarpKnownPluginType = typeof knownWarpPlugins[number];
export type WarpPluginType = WarpKnownPluginType | WarpPluginPartialType;

export interface WarpPlugin<T, R> {
Expand Down

0 comments on commit ffd2c41

Please sign in to comment.