Skip to content

Commit

Permalink
chore: rebuilt to get schemas back
Browse files Browse the repository at this point in the history
  • Loading branch information
ccerv1 committed Jan 22, 2024
1 parent 286fec6 commit 3f851a5
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 2 deletions.
47 changes: 47 additions & 0 deletions src/types/blockchain-address.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/

/**
* An address on a blockchain
*/
export interface BlockchainAddress {
address: string;
/**
* @minItems 1
*/
tags: [
(
| "eoa"
| "safe"
| "creator"
| "deployer"
| "factory"
| "proxy"
| "contract"
| "wallet"
),
...(
| "eoa"
| "safe"
| "creator"
| "deployer"
| "factory"
| "proxy"
| "contract"
| "wallet"
)[],
];
/**
* @minItems 1
*/
networks: [
"mainnet" | "optimism" | "arbitrum",
...("mainnet" | "optimism" | "arbitrum")[],
];
name?: string;
[k: string]: unknown;
}
17 changes: 15 additions & 2 deletions src/types/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,21 @@ export interface BlockchainAddress {
* @minItems 1
*/
tags: [
"eoa" | "safe" | "creator" | "factory" | "proxy" | "contract" | "wallet",
(
| "eoa"
| "safe"
| "creator"
| "deployer"
| "factory"
| "proxy"
| "contract"
| "wallet"
),
...(
| "eoa"
| "safe"
| "creator"
| "deployer"
| "factory"
| "proxy"
| "contract"
Expand All @@ -47,7 +57,10 @@ export interface BlockchainAddress {
/**
* @minItems 1
*/
networks: ["mainnet" | "optimism", ...("mainnet" | "optimism")[]];
networks: [
"mainnet" | "optimism" | "arbitrum",
...("mainnet" | "optimism" | "arbitrum")[],
];
name?: string;
[k: string]: unknown;
}

0 comments on commit 3f851a5

Please sign in to comment.