Skip to content

Commit 3cbd91f

Browse files
authored
feat: Integrate Midnight network support (#175)
1 parent 4c503cc commit 3cbd91f

File tree

119 files changed

+17276
-1733
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+17276
-1733
lines changed

.cargo/config.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# .cargo/config.toml
2+
[net]
3+
git-fetch-with-cli = true

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ body:
9999
options:
100100
- EVM
101101
- Stellar
102+
- Midnight
102103
- Other
103104
validations:
104105
required: true

.github/actions/prepare/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
using: composite
1515
steps:
1616
- name: setup rust tool chain
17-
uses: dtolnay/rust-toolchain@1.86.0 # v1.86.0
17+
uses: dtolnay/rust-toolchain@1.90.0 # v1.90.0
1818
with:
1919
components: ${{ (inputs.components != '') && format('{0}, rustfmt, clippy', inputs.components) || 'rustfmt, clippy' }}
2020
- name: Prepare cache identifiers

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@ data/**/*.txt
2121
data/**/*.json
2222

2323
# Ignore actual config files but not examples
24+
!examples/config/**/*.json
2425
config/**/*.json
26+
27+
# Ignore scripts in config folder
2528
config/**/*.sh
26-
!examples/config/**/*.json
29+
config/**/*.js
30+
config/**/*.py
2731

2832
# Ignore .env files
2933
.env

.typos.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[files]
2-
extend-exclude = ["CHANGELOG.md", "docs/changelog.mdx"]
2+
extend-exclude = ["CHANGELOG.md", "docs/changelog.mdx", "docs/*/changelog.mdx"]

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
## [0.2.0](https://github.com/OpenZeppelin/openzeppelin-monitor/compare/v0.1.0...v0.2.0) (2025-05-14)
110110

111111

112-
## ⚠️ ⚠️ Breaking Changes in v0.2.0
112+
## ⚠️ Breaking Changes in v0.2.0
113113

114114
* Renamed abi to contract_spec in monitor configurations.
115115
* Stellar function expressions now use named parameters instead of positional indexes, for example;

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ Note: if your pull request isn't getting enough attention, you can contact us on
384384
385385
## Coding Standards
386386
387-
- Use **Rust 2021 edition**.
387+
- Use **Rust 2024 edition**.
388388
- Follow the [Rust API Guidelines](https://rust-lang.github.io/api-guidelines/).
389389
- Format code with `rustfmt`:
390390

0 commit comments

Comments
 (0)