Skip to content

Commit

Permalink
💚 fix scarb fmt check
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelStark committed May 24, 2024
1 parent 0901fd0 commit 31fbfb3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div align="center">

<h1> Gitcoin Allo protocol for Starknet 🐺 </h1>
<h2> Core Allo V2 Contracts in Cairo </h2>
<img src="resources/logo/gitcoin-allo-starknet.png" alt="gitcoin-allo-starknet" height="100"/>
<h2> Gitcoin Allo protocol for Starknet </h2>

[![Test Workflow Status](https://github.com/keep-starknet-strange/gitcoin-allo-starknet/actions/workflows/test.yml/badge.svg)](https://github.com/keep-starknet-strange/gitcoin-allo-starknet/actions/workflows/testnet.yml)

Expand Down
Binary file added resources/logo/gitcoin-allo-starknet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/core.cairo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod allo;
12 changes: 12 additions & 0 deletions src/core/allo.cairo
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#[starknet::contract]
pub mod Allo {
#[storage]
struct Storage {}

#[event]
#[derive(Drop, starknet::Event)]
enum Event {}

#[constructor]
fn constructor(ref self: ContractState) {}
}
1 change: 1 addition & 0 deletions src/lib.cairo
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod core;

0 comments on commit 31fbfb3

Please sign in to comment.