Skip to content

Commit

Permalink
Fix direct json references (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahnami authored Mar 29, 2024
1 parent 97f9d3c commit ee84458
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/cmd/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1473,7 +1473,7 @@ export default class DefenderDeploy {
// Always deploy relayers before actions
await this.deployRelayers(stdOut.relayers);
await this.deployActions(stdOut.actions);
// Deploy notifications before monitors and categories
// Deploy notifications before monitors
await this.deployNotifications(stdOut.notifications);
await this.deployMonitors(stdOut.monitors);
await this.deployBlockExplorerApiKey(stdOut.blockExplorerApiKeys);
Expand Down
2 changes: 1 addition & 1 deletion src/types/docs-schemas/definitions.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@
"title": "AbiType",
"anyOf": [
{ "title": "StringABI", "type": "string" },
{ "title": "ArrayABI", "type": "array", "items": { "type": "string" } }
{ "title": "ArrayABI", "type": "array" }
]
},
"safe-contracts": {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## 1 Type

`string[]`
`array` ([ArrayABI](definitions-definitions-abitype-anyof-arrayabi.md))
2 changes: 1 addition & 1 deletion src/types/schemas/definitions.schema.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/types/types/resources.schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export type Address = string;
export type Network1 = SupportedNetwork | TenantNetwork;
export type AbiType = StringABI | ArrayABI;
export type StringABI = string;
export type ArrayABI = string[];
export type ArrayABI = unknown[];
export type DefenderID4 = string;
export type MonitorOrDefenderID = Monitor | DefenderID5;
export type Monitor = BlockMonitor | FortaMonitor;
Expand Down

0 comments on commit ee84458

Please sign in to comment.