We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87b1880 commit 7c24795Copy full SHA for 7c24795
lib/index.ts
@@ -40,7 +40,14 @@ export interface VMOpts {
40
*/
41
blockchain?: Blockchain
42
/**
43
- * If true, create entries in the state tree for the precompiled contracts
+ * If true, create entries in the state tree for the precompiled contracts, saving some gas the
44
+ * first time each of them is called.
45
+ *
46
+ * If this parameter is false, the first call to each of them has to pay an extra 25000 gas
47
+ * for creating the account.
48
49
+ * Setting this to true has the effect of precompiled contracts' gas costs matching mainnet's from
50
+ * the very first call, which is intended for testing networks.
51
52
activatePrecompiles?: boolean
53
0 commit comments