Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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