Skip to content

Commit

Permalink
feat: oz account contract 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI committed Jun 29, 2024
1 parent 0c1627c commit 2a2e672
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/account.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use crate::signer::{AnySigner, SignerArgs, SignerResolutionTask};

const BRAAVOS_SIGNER_TYPE_STARK: Felt = Felt::ONE;

pub const KNOWN_ACCOUNT_CLASSES: [KnownAccountClass; 16] = [
pub const KNOWN_ACCOUNT_CLASSES: [KnownAccountClass; 17] = [
KnownAccountClass {
class_hash: felt!("0x048dd59fabc729a5db3afdf649ecaf388e931647ab2f53ca3c6183fa480aa292"),
variant: AccountVariantType::OpenZeppelinLegacy,
Expand Down Expand Up @@ -101,6 +101,11 @@ pub const KNOWN_ACCOUNT_CLASSES: [KnownAccountClass; 16] = [
variant: AccountVariantType::OpenZeppelin,
description: "OpenZeppelin account contract v0.13.0 compiled with cairo v2.6.3",
},
KnownAccountClass {
class_hash: felt!("0x04343194a4a6082192502e132d9e7834b5d9bfc7a0c1dd990e95b66f85a66d46"),
variant: AccountVariantType::OpenZeppelin,
description: "OpenZeppelin account contract v0.14.0 compiled with cairo v2.6.4",
},
];

pub const BUILTIN_ACCOUNTS: &[BuiltinAccount] = &[
Expand Down
2 changes: 1 addition & 1 deletion src/subcommands/account/oz/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::{
signer::SignerArgs,
};

/// OpenZeppelin account contract v0.13.0 compiled with cairo v2.6.3
/// OpenZeppelin account contract v0.14.0 compiled with cairo v2.6.4
const OZ_ACCOUNT_CLASS_HASH: Felt =
felt!("0x00e2eb8f5672af4e6a4e8a8f1b44989685e668489b0a25437733756c5a34a1d6");

Expand Down

0 comments on commit 2a2e672

Please sign in to comment.