mirror of
https://github.com/alexgo-io/stacks.js.git
synced 2026-01-12 17:52:41 +08:00
chore: fix eslint
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
/* eslint-disable node/prefer-global/buffer */
|
||||
import { bytesToHex } from '@stacks/common';
|
||||
import * as bitcoin from 'bitcoinjs-lib';
|
||||
import * as blockstack from 'blockstack';
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* eslint-disable node/prefer-global/buffer */
|
||||
// TODO: most of this code should be in blockstack.js
|
||||
// Will remove most of this code once the wallet functionality is there instead.
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* eslint-disable node/prefer-global/buffer */
|
||||
import * as logger from 'winston';
|
||||
import * as bitcoinjs from 'bitcoinjs-lib';
|
||||
import * as readline from 'readline';
|
||||
|
||||
@@ -11,7 +11,7 @@ export interface NetworkConfig {
|
||||
}
|
||||
|
||||
export const StacksNetworks = ['mainnet', 'testnet'] as const;
|
||||
export type StacksNetworkName = typeof StacksNetworks[number];
|
||||
export type StacksNetworkName = (typeof StacksNetworks)[number];
|
||||
|
||||
/**
|
||||
* @related {@link StacksMainnet}, {@link StacksTestnet}, {@link StacksMocknet}
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
/* eslint-disable node/prefer-global/buffer */
|
||||
import * as triplesec from 'triplesec';
|
||||
|
||||
export function triplesecDecrypt(
|
||||
|
||||
Reference in New Issue
Block a user