Skip to content

Commit

Permalink
chore: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Darlington02 committed Jan 16, 2024
1 parent 9bb2067 commit 31be1a2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,5 @@ jobs:
- uses: software-mansion/setup-scarb@v1
- name: Check cairo format
run: scarb fmt --check
working-directory: contracts
- name: Build cairo programs
run: scarb build
2 changes: 1 addition & 1 deletion .github/workflows/test_contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
- uses: software-mansion/setup-scarb@v1
- uses: foundry-rs/setup-snfoundry@v2
with:
starknet-foundry-version: 0.12.0
starknet-foundry-version: 0.14.0
- name: Run cairo tests
run: snforge test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SRC-6551 Reference Implementation on Starknet
# ERC-6551 Reference Implementation on Starknet

This repository contains the reference implementation of ERC-6551 on Starknet.

Expand Down
2 changes: 1 addition & 1 deletion src/registry/registry.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#[starknet::contract]
mod Registry {
use core::result::ResultTrait;
use core::hash::HashStateTrait;
use core::hash::HashStateTrait;
use starknet::{ContractAddress, get_caller_address, syscalls::call_contract_syscall, class_hash::ClassHash, class_hash::Felt252TryIntoClassHash, syscalls::deploy_syscall, SyscallResultTrait};
use zeroable::Zeroable;
use traits::{Into, TryInto};
Expand Down

0 comments on commit 31be1a2

Please sign in to comment.