Skip to content

Commit fe23090

Browse files
author
Sentio Bot
committed
chore: update
1 parent 0db0365 commit fe23090

11 files changed

+158
-158
lines changed

doc/index.html

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -4385,6 +4385,63 @@
43854385
"format" : "double"
43864386
}
43874387
}
4388+
};
4389+
defs["solidity_service.EvmRawTransaction"] = {
4390+
"type" : "object",
4391+
"properties" : {
4392+
"hash" : {
4393+
"type" : "string"
4394+
},
4395+
"blockNumber" : {
4396+
"type" : "string",
4397+
"format" : "int64"
4398+
},
4399+
"isIn" : {
4400+
"type" : "boolean"
4401+
},
4402+
"trace" : {
4403+
"type" : "boolean"
4404+
},
4405+
"tx" : {
4406+
"$ref" : "#/components/schemas/evm.Transaction"
4407+
},
4408+
"json" : {
4409+
"type" : "string"
4410+
},
4411+
"timestamp" : {
4412+
"type" : "string",
4413+
"format" : "int64"
4414+
},
4415+
"transactionStatus" : {
4416+
"type" : "integer",
4417+
"format" : "int32"
4418+
},
4419+
"methodSignature" : {
4420+
"type" : "string"
4421+
},
4422+
"methodSignatureText" : {
4423+
"type" : "string"
4424+
},
4425+
"abiItem" : {
4426+
"type" : "string"
4427+
}
4428+
}
4429+
};
4430+
defs["solidity_service.EvmSearchTransactionsResponse"] = {
4431+
"type" : "object",
4432+
"properties" : {
4433+
"transactions" : {
4434+
"type" : "array",
4435+
"items" : {
4436+
"$ref" : "#/components/schemas/solidity_service.EvmRawTransaction"
4437+
}
4438+
},
4439+
"nextPageToken" : {
4440+
"pattern" : "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
4441+
"type" : "string",
4442+
"format" : "byte"
4443+
}
4444+
}
43884445
};
43894446
defs["solidity_service.ExternalFork"] = {
43904447
"type" : "object",
@@ -5194,63 +5251,6 @@
51945251
"$ref" : "#/components/schemas/solidity_service.Fork"
51955252
}
51965253
}
5197-
};
5198-
defs["txindex.EvmRawTransaction"] = {
5199-
"type" : "object",
5200-
"properties" : {
5201-
"hash" : {
5202-
"type" : "string"
5203-
},
5204-
"blockNumber" : {
5205-
"type" : "string",
5206-
"format" : "int64"
5207-
},
5208-
"isIn" : {
5209-
"type" : "boolean"
5210-
},
5211-
"trace" : {
5212-
"type" : "boolean"
5213-
},
5214-
"tx" : {
5215-
"$ref" : "#/components/schemas/evm.Transaction"
5216-
},
5217-
"json" : {
5218-
"type" : "string"
5219-
},
5220-
"timestamp" : {
5221-
"type" : "string",
5222-
"format" : "int64"
5223-
},
5224-
"transactionStatus" : {
5225-
"type" : "integer",
5226-
"format" : "int32"
5227-
},
5228-
"methodSignature" : {
5229-
"type" : "string"
5230-
},
5231-
"methodSignatureText" : {
5232-
"type" : "string"
5233-
},
5234-
"abiItem" : {
5235-
"type" : "string"
5236-
}
5237-
}
5238-
};
5239-
defs["txindex.EvmSearchTransactionsResponse"] = {
5240-
"type" : "object",
5241-
"properties" : {
5242-
"transactions" : {
5243-
"type" : "array",
5244-
"items" : {
5245-
"$ref" : "#/components/schemas/txindex.EvmRawTransaction"
5246-
}
5247-
},
5248-
"nextPageToken" : {
5249-
"pattern" : "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
5250-
"type" : "string",
5251-
"format" : "byte"
5252-
}
5253-
}
52545254
};
52555255
defs["web_service.Chart"] = {
52565256
"type" : "object",
@@ -20896,7 +20896,7 @@ <h3>Usage and SDK Samples</h3>
2089620896
byte[] pageToken = BYTE_ARRAY_DATA_HERE; // byte[] |
2089720897

2089820898
try {
20899-
txindex.EvmSearchTransactionsResponse result = apiInstance.searchTransactions(owner, slug, chainId, address, includeDirect, includeTrace, includeIn, includeOut, startBlock, endBlock, startTimestamp, endTimestamp, transactionStatus, methodSignature, limit, pageToken);
20899+
solidity_service.EvmSearchTransactionsResponse result = apiInstance.searchTransactions(owner, slug, chainId, address, includeDirect, includeTrace, includeIn, includeOut, startBlock, endBlock, startTimestamp, endTimestamp, transactionStatus, methodSignature, limit, pageToken);
2090020900
System.out.println(result);
2090120901
} catch (ApiException e) {
2090220902
System.err.println("Exception when calling DebugAndSimulationApi#searchTransactions");
@@ -20963,7 +20963,7 @@ <h3>Usage and SDK Samples</h3>
2096320963
byte[] pageToken = BYTE_ARRAY_DATA_HERE; // byte[] |
2096420964

2096520965
try {
20966-
txindex.EvmSearchTransactionsResponse result = apiInstance.searchTransactions(owner, slug, chainId, address, includeDirect, includeTrace, includeIn, includeOut, startBlock, endBlock, startTimestamp, endTimestamp, transactionStatus, methodSignature, limit, pageToken);
20966+
solidity_service.EvmSearchTransactionsResponse result = apiInstance.searchTransactions(owner, slug, chainId, address, includeDirect, includeTrace, includeIn, includeOut, startBlock, endBlock, startTimestamp, endTimestamp, transactionStatus, methodSignature, limit, pageToken);
2096720967
System.out.println(result);
2096820968
} catch (ApiException e) {
2096920969
System.err.println("Exception when calling DebugAndSimulationApi#searchTransactions");
@@ -21026,7 +21026,7 @@ <h3>Usage and SDK Samples</h3>
2102621026
methodSignature:methodSignature
2102721027
limit:limit
2102821028
pageToken:pageToken
21029-
completionHandler: ^(txindex.EvmSearchTransactionsResponse output, NSError* error) {
21029+
completionHandler: ^(solidity_service.EvmSearchTransactionsResponse output, NSError* error) {
2103021030
if (output) {
2103121031
NSLog(@"%@", output);
2103221032
}
@@ -21131,7 +21131,7 @@ <h3>Usage and SDK Samples</h3>
2113121131

2113221132
try {
2113321133
// Search transactions
21134-
txindex.EvmSearchTransactionsResponse result = apiInstance.searchTransactions(owner, slug, chainId, address, includeDirect, includeTrace, includeIn, includeOut, startBlock, endBlock, startTimestamp, endTimestamp, transactionStatus, methodSignature, limit, pageToken);
21134+
solidity_service.EvmSearchTransactionsResponse result = apiInstance.searchTransactions(owner, slug, chainId, address, includeDirect, includeTrace, includeIn, includeOut, startBlock, endBlock, startTimestamp, endTimestamp, transactionStatus, methodSignature, limit, pageToken);
2113521135
Debug.WriteLine(result);
2113621136
} catch (Exception e) {
2113721137
Debug.Print("Exception when calling DebugAndSimulationApi.searchTransactions: " + e.Message );
@@ -21662,7 +21662,7 @@ <h3 id="examples-DebugAndSimulation-searchTransactions-title-200"></h3>
2166221662
"content" : {
2166321663
"application/json" : {
2166421664
"schema" : {
21665-
"$ref" : "#/components/schemas/txindex.EvmSearchTransactionsResponse"
21665+
"$ref" : "#/components/schemas/solidity_service.EvmSearchTransactionsResponse"
2166621666
}
2166721667
}
2166821668
}

openapi.json

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -2045,7 +2045,7 @@
20452045
"200": {
20462046
"description": "A successful response.",
20472047
"schema": {
2048-
"$ref": "#/definitions/txindex.EvmSearchTransactionsResponse"
2048+
"$ref": "#/definitions/solidity_service.EvmSearchTransactionsResponse"
20492049
}
20502050
}
20512051
},
@@ -6402,6 +6402,63 @@
64026402
}
64036403
}
64046404
},
6405+
"solidity_service.EvmRawTransaction": {
6406+
"type": "object",
6407+
"properties": {
6408+
"hash": {
6409+
"type": "string"
6410+
},
6411+
"blockNumber": {
6412+
"type": "string",
6413+
"format": "int64"
6414+
},
6415+
"isIn": {
6416+
"type": "boolean"
6417+
},
6418+
"trace": {
6419+
"type": "boolean"
6420+
},
6421+
"tx": {
6422+
"$ref": "#/definitions/evm.Transaction"
6423+
},
6424+
"json": {
6425+
"type": "string"
6426+
},
6427+
"timestamp": {
6428+
"type": "string",
6429+
"format": "int64"
6430+
},
6431+
"transactionStatus": {
6432+
"type": "integer",
6433+
"format": "int32"
6434+
},
6435+
"methodSignature": {
6436+
"type": "string"
6437+
},
6438+
"methodSignatureText": {
6439+
"type": "string"
6440+
},
6441+
"abiItem": {
6442+
"type": "string"
6443+
}
6444+
}
6445+
},
6446+
"solidity_service.EvmSearchTransactionsResponse": {
6447+
"type": "object",
6448+
"properties": {
6449+
"transactions": {
6450+
"type": "array",
6451+
"items": {
6452+
"type": "object",
6453+
"$ref": "#/definitions/solidity_service.EvmRawTransaction"
6454+
}
6455+
},
6456+
"nextPageToken": {
6457+
"type": "string",
6458+
"format": "byte"
6459+
}
6460+
}
6461+
},
64056462
"solidity_service.ExternalFork": {
64066463
"type": "object",
64076464
"properties": {
@@ -7253,63 +7310,6 @@
72537310
}
72547311
}
72557312
},
7256-
"txindex.EvmRawTransaction": {
7257-
"type": "object",
7258-
"properties": {
7259-
"hash": {
7260-
"type": "string"
7261-
},
7262-
"blockNumber": {
7263-
"type": "string",
7264-
"format": "int64"
7265-
},
7266-
"isIn": {
7267-
"type": "boolean"
7268-
},
7269-
"trace": {
7270-
"type": "boolean"
7271-
},
7272-
"tx": {
7273-
"$ref": "#/definitions/evm.Transaction"
7274-
},
7275-
"json": {
7276-
"type": "string"
7277-
},
7278-
"timestamp": {
7279-
"type": "string",
7280-
"format": "int64"
7281-
},
7282-
"transactionStatus": {
7283-
"type": "integer",
7284-
"format": "int32"
7285-
},
7286-
"methodSignature": {
7287-
"type": "string"
7288-
},
7289-
"methodSignatureText": {
7290-
"type": "string"
7291-
},
7292-
"abiItem": {
7293-
"type": "string"
7294-
}
7295-
}
7296-
},
7297-
"txindex.EvmSearchTransactionsResponse": {
7298-
"type": "object",
7299-
"properties": {
7300-
"transactions": {
7301-
"type": "array",
7302-
"items": {
7303-
"type": "object",
7304-
"$ref": "#/definitions/txindex.EvmRawTransaction"
7305-
}
7306-
},
7307-
"nextPageToken": {
7308-
"type": "string",
7309-
"format": "byte"
7310-
}
7311-
}
7312-
},
73137313
"web_service.Chart": {
73147314
"type": "object",
73157315
"properties": {

src/DebugAndSimulationApi.md

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/apis/DebugAndSimulationApi.ts

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)