Skip to content

Commit

Permalink
♻️ refactor scarb project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelStark committed Dec 13, 2023
1 parent 8fa64f2 commit 7838f10
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<img src="assets/logo/logo.png" height="256">
</p>

<h1 align="center">⚡ Unruggable Memecoin ⚡</h1>
<h1 align="center">⚡ Unruggable Meme ⚡</h1>

<p align="center">
<strong>☣️ A framework for building safer memecoins 💸</strong>
Expand Down
2 changes: 1 addition & 1 deletion contracts/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ version = "0.1.0"
source = "git+https://github.com/foundry-rs/starknet-foundry?tag=v0.12.0#0c3d2fe4ab31aa4484fa216417408ae65a149efe"

[[package]]
name = "unruggablememecoin"
name = "unruggable"
version = "0.1.0"
dependencies = [
"openzeppelin",
Expand Down
2 changes: 1 addition & 1 deletion contracts/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "unruggablememecoin"
name = "unruggable"
version = "0.1.0"

# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html
Expand Down
4 changes: 3 additions & 1 deletion contracts/src/lib.cairo
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
mod unruggable_memecoin;
mod tokens {
mod memecoin;
}
File renamed without changes.
2 changes: 1 addition & 1 deletion contracts/tests/test_unruggable_memecoin.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use starknet::{ContractAddress, contract_address_const};
use openzeppelin::token::erc20::interface::IERC20;
use snforge_std::{declare, ContractClassTrait, start_prank, stop_prank};

use unruggablememecoin::unruggable_memecoin::{
use unruggable::tokens::memecoin::{
IUnruggableMemecoinDispatcher, IUnruggableMemecoinDispatcherTrait
};

Expand Down

0 comments on commit 7838f10

Please sign in to comment.