diff --git a/tasks/task01/Move.lock b/mover/GINAYY/Move.lock similarity index 100% rename from tasks/task01/Move.lock rename to mover/GINAYY/Move.lock diff --git a/tasks/task01/Move.toml b/mover/GINAYY/Move.toml similarity index 100% rename from tasks/task01/Move.toml rename to mover/GINAYY/Move.toml diff --git a/source/hello_move.move b/mover/GINAYY/hello_move.move similarity index 100% rename from source/hello_move.move rename to mover/GINAYY/hello_move.move diff --git a/images/scan.png b/mover/GINAYY/images/scan.png similarity index 100% rename from images/scan.png rename to mover/GINAYY/images/scan.png diff --git a/images/walletAddress.png b/mover/GINAYY/images/walletAddress.png similarity index 100% rename from images/walletAddress.png rename to mover/GINAYY/images/walletAddress.png diff --git a/tasks/task01/hello_move.move b/mover/GINAYY/sources/hello_move.move similarity index 100% rename from tasks/task01/hello_move.move rename to mover/GINAYY/sources/hello_move.move diff --git a/tasks/task01/tests/hello_move_tests.move b/mover/GINAYY/tests/hello_move_tests.move similarity index 100% rename from tasks/task01/tests/hello_move_tests.move rename to mover/GINAYY/tests/hello_move_tests.move diff --git a/tasks/task01/images/scan.png b/tasks/task01/images/scan.png deleted file mode 100644 index a293a307c..000000000 Binary files a/tasks/task01/images/scan.png and /dev/null differ diff --git a/tasks/task01/images/walletAddress.png b/tasks/task01/images/walletAddress.png deleted file mode 100644 index 9cff1791f..000000000 Binary files a/tasks/task01/images/walletAddress.png and /dev/null differ diff --git a/tasks/task01/sources/hello_move.move b/tasks/task01/sources/hello_move.move deleted file mode 100644 index 0aefef642..000000000 --- a/tasks/task01/sources/hello_move.move +++ /dev/null @@ -1,20 +0,0 @@ -module hello_move::hello { - use std::ascii::{String, string}; - use sui::object::{Self,UID}; - use sui::transfer::transfer; - use sui::tx_context::{TxContext, sender}; - - public struct Hello has key{ - id:UID, - say: String - } - - fun init(ctx: &mut TxContext) { - let hello_move = Hello { - id:object::new(ctx), - say: string(b"GINAYY"), - - }; - transfer(hello_move, sender(ctx)); - } -} \ No newline at end of file