Skip to content

Commit

Permalink
Merge pull request #140 from api3dao/main
Browse files Browse the repository at this point in the history
Initiate release
  • Loading branch information
bbenligiray authored Jun 7, 2024
2 parents eefbec2 + ce96c06 commit ed73569
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/stupid-clouds-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@api3/contracts': patch
---

Fix neon-evm and neon-evm-testnet Api3Market deployments
4 changes: 2 additions & 2 deletions deployments/addresses.json
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@
"11155111": "0x9F5223d4a93a771D178992078DB1AbE421Dd4218",
"11155420": "0x9F5223d4a93a771D178992078DB1AbE421Dd4218",
"168587773": "0x9F5223d4a93a771D178992078DB1AbE421Dd4218",
"245022926": "0x10760b9c0f87e28003380c8fb282db44f292b5b7",
"245022934": "0x1b127098d19a3d6a0417560fd7df2b927fafd933",
"245022926": "0x25B208acd27F062344b2844ec245d52f9cb200ef",
"245022934": "0x1B127098D19A3D6A0417560fD7df2b927FafD933",
"1380012617": "0x9F5223d4a93a771D178992078DB1AbE421Dd4218",
"1918988905": "0x9F5223d4a93a771D178992078DB1AbE421Dd4218"
},
Expand Down
2 changes: 1 addition & 1 deletion deployments/block-numbers.json
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@
"11155111": 5546737,
"11155420": 9919445,
"168587773": 3268913,
"245022926": 302187352,
"245022926": 302185980,
"245022934": 268659980,
"1380012617": 315653,
"1918988905": 251952
Expand Down
6 changes: 3 additions & 3 deletions deployments/neon-evm-testnet/Api3Market.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"address": "0x10760b9c0f87e28003380c8fb282db44f292b5b7",
"address": "0x25B208acd27F062344b2844ec245d52f9cb200ef",
"abi": [
{
"inputs": [
Expand Down Expand Up @@ -1204,9 +1204,9 @@
"type": "function"
}
],
"transactionHash": "0xb75cbcfeb529ae655ed64f8cb8baf75aa981a859eb0e7b792ed513389644850a",
"transactionHash": "0xf117567792c595327d195d3d9a4773d0790a6c4c4b2289ea6b350d6905dcfb6c",
"receipt": {
"blockNumber": 302187352
"blockNumber": 302185980
},
"args": ["0x81bc85f329cDB28936FbB239f734AE495121F9A6", "0x9EB9798Dc1b602067DFe5A57c3bfc914B965acFD", 10]
}
2 changes: 1 addition & 1 deletion deployments/neon-evm/Api3Market.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"address": "0x1b127098d19a3d6a0417560fd7df2b927fafd933",
"address": "0x1B127098D19A3D6A0417560fD7df2b927FafD933",
"abi": [
{
"inputs": [
Expand Down
7 changes: 6 additions & 1 deletion scripts/verify-deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ import * as path from 'node:path';
import { go } from '@api3/promise-utils';
import { config, deployments, ethers } from 'hardhat';

import { chainsSupportedByDapis, chainsSupportedByOevAuctions } from '../data/chain-support.json';
import {
chainsSupportedByDapis,
chainsSupportedByMarket,
chainsSupportedByOevAuctions,
} from '../data/chain-support.json';
import managerMultisigAddresses from '../data/manager-multisig.json';

const METADATA_HASH_LENGTH = 53 * 2;
Expand All @@ -29,6 +33,7 @@ async function main() {
...(chainsSupportedByDapis.includes(network)
? ['AccessControlRegistry', 'OwnableCallForwarder', 'Api3ServerV1', 'ProxyFactory']
: []),
...(chainsSupportedByMarket.includes(network) ? ['Api3Market'] : []),
...(chainsSupportedByOevAuctions.includes(network) ? ['OevAuctionHouse'] : []),
];

Expand Down

0 comments on commit ed73569

Please sign in to comment.