Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: remove TSS address for ZetaChain
Browse files Browse the repository at this point in the history
fadeev committed Apr 17, 2024
1 parent 4be6fd4 commit 0eaa1c6
Showing 6 changed files with 14 additions and 8 deletions.
7 changes: 0 additions & 7 deletions data/addresses.mainnet.json
Original file line number Diff line number Diff line change
@@ -146,13 +146,6 @@
"chain_name": "zeta_mainnet",
"type": "systemContract"
},
{
"address": "0x70e967acFcC17c3941E87562161406d41676FD83",
"category": "omnichain",
"chain_id": 7000,
"chain_name": "zeta_mainnet",
"type": "tss"
},
{
"address": "0x9fd96203f7b22bCF72d9DCb40ff98302376cE09c",
"category": "omnichain",
2 changes: 1 addition & 1 deletion tasks/addresses.ts
Original file line number Diff line number Diff line change
@@ -59,7 +59,7 @@ const fetchTssData = async (chains: any, addresses: any, network: Network) => {
if (tssResponse.status === 200) {
chains.forEach((chain: any) => {
const { btc, eth } = tssResponse.data;
if (chain.chain_name === "zeta_testnet") return;
if (["zeta_testnet", "zeta_mainnet"].includes(chain.chain_name)) return;
addresses.push({
address: ["btc_testnet", "btc_mainnet"].includes(chain.chain_name) ? btc : eth,
category: "omnichain",
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
export type { WZETA } from "./WZETA";
export type { ZetaConnectorZEVM } from "./ZetaConnectorZEVM";
export type { ZetaReceiver } from "./ZetaReceiver";
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
export { WZETA__factory } from "./WZETA__factory";
export { ZetaConnectorZEVM__factory } from "./ZetaConnectorZEVM__factory";
export { ZetaReceiver__factory } from "./ZetaReceiver__factory";
9 changes: 9 additions & 0 deletions typechain-types/hardhat.d.ts
Original file line number Diff line number Diff line change
@@ -344,6 +344,10 @@ declare module "hardhat/types/runtime" {
name: "WETH9",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.WETH9__factory>;
getContractFactory(
name: "WZETA",
signerOrOptions?: ethers.Signer | FactoryOptions
): Promise<Contracts.WZETA__factory>;
getContractFactory(
name: "ZetaConnectorZEVM",
signerOrOptions?: ethers.Signer | FactoryOptions
@@ -776,6 +780,11 @@ declare module "hardhat/types/runtime" {
address: string,
signer?: ethers.Signer
): Promise<Contracts.WETH9>;
getContractAt(
name: "WZETA",
address: string,
signer?: ethers.Signer
): Promise<Contracts.WZETA>;
getContractAt(
name: "ZetaConnectorZEVM",
address: string,
2 changes: 2 additions & 0 deletions typechain-types/index.ts
Original file line number Diff line number Diff line change
@@ -152,6 +152,8 @@ export type { SystemContractErrors } from "./contracts/zevm/SystemContract.sol/S
export { SystemContractErrors__factory } from "./factories/contracts/zevm/SystemContract.sol/SystemContractErrors__factory";
export type { SystemContractMock } from "./contracts/zevm/testing/SystemContractMock.sol/SystemContractMock";
export { SystemContractMock__factory } from "./factories/contracts/zevm/testing/SystemContractMock.sol/SystemContractMock__factory";
export type { WZETA } from "./contracts/zevm/ZetaConnectorZEVM.sol/WZETA";
export { WZETA__factory } from "./factories/contracts/zevm/ZetaConnectorZEVM.sol/WZETA__factory";
export type { ZetaConnectorZEVM } from "./contracts/zevm/ZetaConnectorZEVM.sol/ZetaConnectorZEVM";
export { ZetaConnectorZEVM__factory } from "./factories/contracts/zevm/ZetaConnectorZEVM.sol/ZetaConnectorZEVM__factory";
export type { ZRC20 } from "./contracts/zevm/ZRC20.sol/ZRC20";

0 comments on commit 0eaa1c6

Please sign in to comment.