Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"jsonschema": "^1.2.4",
"nanoid": "^3.1.12",
"single-call-balance-checker-abi": "^1.0.0",
"uuid": "^3.3.2",
"uuid": "^8.3.2",
"web3": "^0.20.7",
"web3-provider-engine": "^16.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/assets/AssetsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { AssetsContractController } from './AssetsContractController';
import { ApiCollectibleResponse } from './AssetsDetectionController';

const { Mutex } = require('async-mutex');
const random = require('uuid/v1');
const random = require('uuid').v1;

/**
* @type Collectible
Expand Down
2 changes: 1 addition & 1 deletion src/message-manager/MessageManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import AbstractMessageManager, {
OriginalRequest,
} from './AbstractMessageManager';

const random = require('uuid/v1');
const random = require('uuid').v1;

/**
* @type Message
Expand Down
2 changes: 1 addition & 1 deletion src/message-manager/PersonalMessageManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import AbstractMessageManager, {
OriginalRequest,
} from './AbstractMessageManager';

const random = require('uuid/v1');
const random = require('uuid').v1;

/**
* @type Message
Expand Down
2 changes: 1 addition & 1 deletion src/message-manager/TypedMessageManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import AbstractMessageManager, {
OriginalRequest,
} from './AbstractMessageManager';

const random = require('uuid/v1');
const random = require('uuid').v1;

/**
* @type TypedMessage
Expand Down
2 changes: 1 addition & 1 deletion src/transaction/TransactionController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
const MethodRegistry = require('eth-method-registry');
const EthQuery = require('eth-query');
const Transaction = require('ethereumjs-tx');
const random = require('uuid/v1');
const random = require('uuid').v1;
const { BN } = require('ethereumjs-util');
const { Mutex } = require('async-mutex');

Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7124,7 +7124,7 @@ uuid@^3.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866"
integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==

uuid@^8.3.0:
uuid@^8.3.0, uuid@^8.3.2:
version "8.3.2"
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
Expand Down