Skip to content
Closed
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 .github/workflows/check-abi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
rustflags: ""

- name: Install cargo-stylus
run: cargo install [email protected].1
run: cargo install --locked --force [email protected].2

- name: Run export-abi
run: ./scripts/check-abi.sh
2 changes: 1 addition & 1 deletion .github/workflows/check-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
rustflags: ""

- name: Install cargo-stylus
run: cargo install [email protected].1
run: cargo install --locked --force [email protected].2

- name: Run wasm check
run: ./scripts/check-wasm.sh
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
rustflags: ""

- name: Install cargo-stylus
run: cargo install [email protected].1
run: cargo install --locked --force [email protected].2

- name: Setup nitro node
run: ./scripts/nitro-testnode.sh -d -i
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gas-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
rustflags: ""

- name: Install cargo-stylus
run: cargo install [email protected].1
run: cargo install --locked --force [email protected].2

- name: Install wasm-opt
run: cargo install [email protected]
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

- `AdminChanged` event parameters no longer indexed. #794

## [v0.3.0-rc.1] - 2025-08-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/proxy/erc1967/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mod sol {
/// Emitted when the admin account has changed.
#[derive(Debug)]
#[allow(missing_docs)]
event AdminChanged(address indexed previous_admin, address indexed new_admin);
event AdminChanged(address previous_admin, address new_admin);

/// Emitted when the beacon is changed.
#[derive(Debug)]
Expand Down
Loading