Skip to content

Commit 4d2758d

Browse files
author
Sentio Bot
committed
chore: update
1 parent 34dd26c commit 4d2758d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

doc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5772,7 +5772,7 @@
57725772
defs["solidity_service.SourceFetcherType"] = {
57735773
"type" : "string",
57745774
"default" : "ETHERSCAN",
5775-
"enum" : [ "ETHERSCAN", "BLOCKSCOUT", "OKLINK" ]
5775+
"enum" : [ "ETHERSCAN", "BLOCKSCOUT", "OKLINK", "ETHERSCAN_V2" ]
57765776
};
57775777
defs["solidity_service.SourceInfo"] = {
57785778
"type" : "object",

openapi.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8219,7 +8219,8 @@
82198219
"enum": [
82208220
"ETHERSCAN",
82218221
"BLOCKSCOUT",
8222-
"OKLINK"
8222+
"OKLINK",
8223+
"ETHERSCAN_V2"
82238224
],
82248225
"default": "ETHERSCAN"
82258226
},

src/types.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2508,7 +2508,7 @@ export namespace solidity_service {
25082508
export type SolidityApiServiceSimulateTransactionOnForkBody = {
25092509
simulation: Simulation;
25102510
};
2511-
export type SourceFetcherType = 'ETHERSCAN' | 'BLOCKSCOUT' | 'OKLINK';
2511+
export type SourceFetcherType = 'ETHERSCAN' | 'BLOCKSCOUT' | 'OKLINK' | 'ETHERSCAN_V2';
25122512
export type SourceInfo = {
25132513
contractName?: string;
25142514
options?: CompilerOptions;

0 commit comments

Comments
 (0)