You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/vm/lib/index.ts
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ if (!IS_BROWSER) {
29
29
*/
30
30
exportinterfaceVMOpts{
31
31
/**
32
-
* Use a [common](https://github.com/ethereumjs/ethereumjs-vm/packages/common) instance
32
+
* Use a [common](https://github.com/ethereumjs/ethereumjs-monorepo/packages/common) instance
33
33
* if you want to change the chain setup.
34
34
*
35
35
* ### Possible Values
@@ -62,12 +62,12 @@ export interface VMOpts {
62
62
*/
63
63
stateManager?: StateManager
64
64
/**
65
-
* An [merkle-patricia-tree](https://github.com/ethereumjs/ethereumjs-vm/tree/master/packages/trie) instance for the state tree (ignored if stateManager is passed)
65
+
* An [merkle-patricia-tree](https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/trie) instance for the state tree (ignored if stateManager is passed)
66
66
* @deprecated
67
67
*/
68
68
state?: any// TODO
69
69
/**
70
-
* A [blockchain](https://github.com/ethereumjs/ethereumjs-vm/packages/blockchain) object for storing/retrieving blocks
70
+
* A [blockchain](https://github.com/ethereumjs/ethereumjs-monorepo/packages/blockchain) object for storing/retrieving blocks
71
71
*/
72
72
blockchain?: Blockchain
73
73
/**
@@ -270,7 +270,7 @@ export default class VM extends AsyncEventEmitter {
270
270
*
271
271
* This method modifies the state.
272
272
*
273
-
* @param blockchain - An [@ethereumjs/blockchain](https://github.com/ethereumjs/ethereumjs-vm/tree/master/packages/blockchain) object to process
273
+
* @param blockchain - An [@ethereumjs/blockchain](https://github.com/ethereumjs/ethereumjs-monorepo/tree/master/packages/blockchain) object to process
0 commit comments