Skip to content

Commit

Permalink
change package name from beasts to pixel_beasts
Browse files Browse the repository at this point in the history
  • Loading branch information
loothero committed Sep 20, 2024
1 parent 20e1887 commit b96b1cc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "beasts"
name = "pixel_beasts"
version = "0.1.0"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/beast.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use array::{ArrayTrait};
use core::traits::{Into};

use super::long_string::LongString;
use beasts::pack::{PackableBeast};
use pixel_beasts::pack::{PackableBeast};

// Tiers
const TIER_1: felt252 = '1';
Expand Down
8 changes: 4 additions & 4 deletions src/beasts.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ mod Beasts {
use openzeppelin_token::erc721::interface::{IERC721_ID, IERC721_METADATA_ID};
use openzeppelin_introspection::interface::{ISRC5_ID};

use beasts::long_string::{LongString};
use beasts::interfaces::{IBeasts};
use beasts::pack::{mask, pow, PackableBeast};
use beasts::beast::{get_hash, get_content};
use pixel_beasts::long_string::{LongString};
use pixel_beasts::interfaces::{IBeasts};
use pixel_beasts::pack::{mask, pow, PackableBeast};
use pixel_beasts::beast::{get_hash, get_content};
use core::starknet::storage::Map;

// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces.cairo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use starknet::ContractAddress;
use beasts::pack::PackableBeast;
use pixel_beasts::pack::PackableBeast;

// contract interface
#[starknet::interface]
Expand Down

0 comments on commit b96b1cc

Please sign in to comment.