Verify Contract (using Solidity metadata.json)
curl --request POST \
--url https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address} \
--header 'Content-Type: application/json' \
--data '
{
"sources": {
"contracts/Storage.sol": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Storage {\n uint256 number;\n\n function setNumber(uint256 newNumber) public {\n number = newNumber;\n }\n\n function getNumber() public view returns (uint256) {\n return number;\n }\n}\n",
"contracts/Owner.sol": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Owner {\n address public owner;\n\n constructor() {\n owner = msg.sender;\n }\n}\n"
},
"metadata": {}
}
'import requests
url = "https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}"
payload = {
"sources": {
"contracts/Storage.sol": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Storage {
uint256 number;
function setNumber(uint256 newNumber) public {
number = newNumber;
}
function getNumber() public view returns (uint256) {
return number;
}
}
",
"contracts/Owner.sol": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Owner {
address public owner;
constructor() {
owner = msg.sender;
}
}
"
},
"metadata": {}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
sources: {
'contracts/Storage.sol': '// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Storage {\n uint256 number;\n\n function setNumber(uint256 newNumber) public {\n number = newNumber;\n }\n\n function getNumber() public view returns (uint256) {\n return number;\n }\n}\n',
'contracts/Owner.sol': '// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Owner {\n address public owner;\n\n constructor() {\n owner = msg.sender;\n }\n}\n'
},
metadata: {}
})
};
fetch('https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sources' => [
'contracts/Storage.sol' => '// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Storage {
uint256 number;
function setNumber(uint256 newNumber) public {
number = newNumber;
}
function getNumber() public view returns (uint256) {
return number;
}
}
',
'contracts/Owner.sol' => '// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Owner {
address public owner;
constructor() {
owner = msg.sender;
}
}
'
],
'metadata' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}"
payload := strings.NewReader("{\n \"sources\": {\n \"contracts/Storage.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Storage {\\n uint256 number;\\n\\n function setNumber(uint256 newNumber) public {\\n number = newNumber;\\n }\\n\\n function getNumber() public view returns (uint256) {\\n return number;\\n }\\n}\\n\",\n \"contracts/Owner.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Owner {\\n address public owner;\\n\\n constructor() {\\n owner = msg.sender;\\n }\\n}\\n\"\n },\n \"metadata\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}")
.header("Content-Type", "application/json")
.body("{\n \"sources\": {\n \"contracts/Storage.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Storage {\\n uint256 number;\\n\\n function setNumber(uint256 newNumber) public {\\n number = newNumber;\\n }\\n\\n function getNumber() public view returns (uint256) {\\n return number;\\n }\\n}\\n\",\n \"contracts/Owner.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Owner {\\n address public owner;\\n\\n constructor() {\\n owner = msg.sender;\\n }\\n}\\n\"\n },\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"sources\": {\n \"contracts/Storage.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Storage {\\n uint256 number;\\n\\n function setNumber(uint256 newNumber) public {\\n number = newNumber;\\n }\\n\\n function getNumber() public view returns (uint256) {\\n return number;\\n }\\n}\\n\",\n \"contracts/Owner.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Owner {\\n address public owner;\\n\\n constructor() {\\n owner = msg.sender;\\n }\\n}\\n\"\n },\n \"metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"verificationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"customCode": "unsupported_chain",
"message": "The chain with chainId 9429413 is not supported",
"errorId": "1ac6b91a-0605-4459-93dc-18f210a70192"
}{
"customCode": "already_verified",
"message": "Contract 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 on chain 31337 is already verified with runtimeMatch and creationMatch both being exact matches.",
"errorId": "23aaf52e-168a-4cfa-8463-65ddfb792efc"
}{
"customCode": "too_many_requests",
"message": "You are sending too many requests",
"errorId": "1ac6b91a-0605-4459-93dc-18f210a70192"
}{
"customCode": "internal_error",
"message": "Something went wrong",
"errorId": "1ac6b91a-0605-4459-93dc-18f210a70192"
}Contract Verification API
Verify Contract (using Solidity metadata.json)
Endpoint to submit a verification with the Solidity metadata.json
POST
/
v2
/
verify
/
metadata
/
{chainId}
/
{address}
Verify Contract (using Solidity metadata.json)
curl --request POST \
--url https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address} \
--header 'Content-Type: application/json' \
--data '
{
"sources": {
"contracts/Storage.sol": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Storage {\n uint256 number;\n\n function setNumber(uint256 newNumber) public {\n number = newNumber;\n }\n\n function getNumber() public view returns (uint256) {\n return number;\n }\n}\n",
"contracts/Owner.sol": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Owner {\n address public owner;\n\n constructor() {\n owner = msg.sender;\n }\n}\n"
},
"metadata": {}
}
'import requests
url = "https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}"
payload = {
"sources": {
"contracts/Storage.sol": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Storage {
uint256 number;
function setNumber(uint256 newNumber) public {
number = newNumber;
}
function getNumber() public view returns (uint256) {
return number;
}
}
",
"contracts/Owner.sol": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Owner {
address public owner;
constructor() {
owner = msg.sender;
}
}
"
},
"metadata": {}
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
sources: {
'contracts/Storage.sol': '// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Storage {\n uint256 number;\n\n function setNumber(uint256 newNumber) public {\n number = newNumber;\n }\n\n function getNumber() public view returns (uint256) {\n return number;\n }\n}\n',
'contracts/Owner.sol': '// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract Owner {\n address public owner;\n\n constructor() {\n owner = msg.sender;\n }\n}\n'
},
metadata: {}
})
};
fetch('https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'sources' => [
'contracts/Storage.sol' => '// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Storage {
uint256 number;
function setNumber(uint256 newNumber) public {
number = newNumber;
}
function getNumber() public view returns (uint256) {
return number;
}
}
',
'contracts/Owner.sol' => '// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Owner {
address public owner;
constructor() {
owner = msg.sender;
}
}
'
],
'metadata' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}"
payload := strings.NewReader("{\n \"sources\": {\n \"contracts/Storage.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Storage {\\n uint256 number;\\n\\n function setNumber(uint256 newNumber) public {\\n number = newNumber;\\n }\\n\\n function getNumber() public view returns (uint256) {\\n return number;\\n }\\n}\\n\",\n \"contracts/Owner.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Owner {\\n address public owner;\\n\\n constructor() {\\n owner = msg.sender;\\n }\\n}\\n\"\n },\n \"metadata\": {}\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}")
.header("Content-Type", "application/json")
.body("{\n \"sources\": {\n \"contracts/Storage.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Storage {\\n uint256 number;\\n\\n function setNumber(uint256 newNumber) public {\\n number = newNumber;\\n }\\n\\n function getNumber() public view returns (uint256) {\\n return number;\\n }\\n}\\n\",\n \"contracts/Owner.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Owner {\\n address public owner;\\n\\n constructor() {\\n owner = msg.sender;\\n }\\n}\\n\"\n },\n \"metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sourcify.dev/server/v2/verify/metadata/{chainId}/{address}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"sources\": {\n \"contracts/Storage.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Storage {\\n uint256 number;\\n\\n function setNumber(uint256 newNumber) public {\\n number = newNumber;\\n }\\n\\n function getNumber() public view returns (uint256) {\\n return number;\\n }\\n}\\n\",\n \"contracts/Owner.sol\": \"// SPDX-License-Identifier: MIT\\npragma solidity ^0.8.0;\\n\\ncontract Owner {\\n address public owner;\\n\\n constructor() {\\n owner = msg.sender;\\n }\\n}\\n\"\n },\n \"metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"verificationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"customCode": "unsupported_chain",
"message": "The chain with chainId 9429413 is not supported",
"errorId": "1ac6b91a-0605-4459-93dc-18f210a70192"
}{
"customCode": "already_verified",
"message": "Contract 0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512 on chain 31337 is already verified with runtimeMatch and creationMatch both being exact matches.",
"errorId": "23aaf52e-168a-4cfa-8463-65ddfb792efc"
}{
"customCode": "too_many_requests",
"message": "You are sending too many requests",
"errorId": "1ac6b91a-0605-4459-93dc-18f210a70192"
}{
"customCode": "internal_error",
"message": "Something went wrong",
"errorId": "1ac6b91a-0605-4459-93dc-18f210a70192"
}Path Parameters
The chainId number of the EVM chain
Required string length:
1 - 20Pattern:
^\d+$Example:
"11155111"
Contract's 20 byte address in hex string with the 0x prefix. Case insensitive.
Required string length:
42Pattern:
(\b0x[a-fA-F0-9]{40}\b)Example:
"0x2738d13E81e30bC615766A0410e7cF199FD59A83"
Body
application/json
A mapping from file path to its content.
Show child attributes
Show child attributes
The hash of the transaction that created this contract. Optional.
Pattern:
(\b0x[a-f0-9]{64}\b)Example:
"0xb6ee9d528b336942dd70d3b41e2811be10a473776352009fd73f85604f5ed206"
Response
Successfully submitted the verification. The server started to process the verification.
You can follow the verification status via the returned verificationId at GET /v2/verify/{verificationId}
Was this page helpful?
⌘I