Skip to content

Commit

Permalink
bump contract versions (#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
chray-zhang authored Jan 30, 2025
1 parent fd73ddf commit 7dfeeab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/src/access_control/access_controller.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ mod AccessController {
#[abi(embed_v0)]
impl TypeAndVersionImpl of ITypeAndVersion<ContractState> {
fn type_and_version(self: @ContractState) -> felt252 {
'AccessController 1.0.0'
'AccessController 2.0.0'
}
}
}
2 changes: 1 addition & 1 deletion contracts/src/emergency/sequencer_uptime_feed.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ mod SequencerUptimeFeed {
#[abi(embed_v0)]
impl TypeAndVersion of ITypeAndVersion<ContractState> {
fn type_and_version(self: @ContractState) -> felt252 {
'SequencerUptimeFeed 1.0.0'
'SequencerUptimeFeed 2.0.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/src/multisig.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ mod Multisig {
#[abi(embed_v0)]
impl TypeAndVersionImpl of ITypeAndVersion<ContractState> {
fn type_and_version(self: @ContractState) -> felt252 {
'Multisig 1.0.0'
'Multisig 2.0.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/src/ocr2/aggregator.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ mod Aggregator {
#[abi(embed_v0)]
impl TypeAndVersionImpl of ITypeAndVersion<ContractState> {
fn type_and_version(self: @ContractState) -> felt252 {
'ocr2/aggregator.cairo 1.0.0'
'ocr2/aggregator.cairo 2.0.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/src/ocr2/mocks/mock_aggregator.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ mod MockAggregator {
#[abi(embed_v0)]
impl TypeAndVersionImpl of ITypeAndVersion<ContractState> {
fn type_and_version(self: @ContractState) -> felt252 {
'mock_aggregator.cairo 1.0.0'
'mock_aggregator.cairo 2.0.0'
}
}

Expand Down

0 comments on commit 7dfeeab

Please sign in to comment.