Skip to content

Commit

Permalink
feat: oz account contract 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI committed Jun 14, 2024
1 parent 765251d commit 59a9739
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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: FieldElement = FieldElement::ONE;

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

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

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

#[derive(Debug, Parser)]
pub struct Init {
Expand Down

0 comments on commit 59a9739

Please sign in to comment.