Skip to content

Commit

Permalink
Merge pull request #8 from kfastov/chore/setup-the-repo-and-fix-build…
Browse files Browse the repository at this point in the history
…-process

Setup the repo and fix build process
  • Loading branch information
kfastov authored Jun 25, 2024
2 parents 7889842 + 487575e commit 96426a6
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/FUNDING.yml

This file was deleted.

Binary file modified bun.lockb
Binary file not shown.
21 changes: 15 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
{
"name": "@prb/foundry-template",
"description": "Foundry-based template for developing Solidity smart contracts",
"name": "@kfastov/worldcoin-bridge-linea",
"description": "World ID state bridge for Linea",
"version": "1.0.0",
"author": {
"name": "Paul Razvan Berg",
"url": "https://github.com/PaulRBerg"
"name": "Konstantin Fastov",
"url": "https://github.com/kfastov"
},
"contributors": [
{
"name": "Worldcoin",
"url": "https://github.com/worldcoin"
}
],
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@worldcoin/world-id-state-bridge": "github:worldcoin/world-id-state-bridge",
"@rari-capital/solmate": "https://github.com/rari-capital/solmate.git#8f9b23f8838670afda0fd8983f2c41e8037ae6bc"
},
Expand All @@ -19,11 +26,13 @@
"keywords": [
"blockchain",
"ethereum",
"linea",
"worldcoin",
"world-id",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
"solidity"
],
"private": true,
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions remappings.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@openzeppelin/contracts/=node_modules/@openzeppelin/contracts/
@openzeppelin/contracts-upgradeable/=node_modules/@openzeppelin/contracts-upgradeable
forge-std/=node_modules/forge-std/
world-id-state-bridge=node_modules/@worldcoin/world-id-state-bridge/src
2 changes: 2 additions & 0 deletions src/LineaStateBridge.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;

import { Ownable2Step } from "@openzeppelin/contracts/access/Ownable2Step.sol";

// Optimism interface for cross domain messaging

/// @title World ID State Bridge Optimism
Expand Down

0 comments on commit 96426a6

Please sign in to comment.