Verify a Vyper contract with its source code and contract creation information
POSThttps://api.fuse.io/api/v0/explorer/?module=contract&action=verify_vyper_contract
Verify a Vyper contract with its source code and contract creation information
Request
Query Parameters
module stringrequired
Possible values: [contract
]
action stringrequired
Possible values: [verify_vyper_contract
]
apiKey stringrequired
Example: pk_1234567890
- application/json
Bodyrequired
addressHashstring
namestring
compilerVersionstring
contractSourceCodestring
Responses
- 200
OK
- application/json
- Schema
- Example (auto)
Schema
messagestring
resultstring
statusstring
{
"message": "string",
"result": "string",
"status": "string"
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.fuse.io/api/v0/explorer");
request.Headers.Add("Accept", "application/json");
var content = new StringContent(string.Empty);
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear