diff --git a/README.md b/README.md index d22f5fb9b..431a793c6 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# litmus +# Acre Bitcoin Liquid Staking -[![Core](https://github.com/thesis/litmus/actions/workflows/core.yaml/badge.svg?branch=main&event=push)](https://github.com/thesis/litmus/actions/workflows/core.yaml) +[![Core](https://github.com/thesis/acre/actions/workflows/core.yaml/badge.svg?branch=main&event=push)](https://github.com/thesis/acre/actions/workflows/core.yaml) ## Development diff --git a/core/README.md b/core/README.md index de1c3beaf..b90952ee8 100644 --- a/core/README.md +++ b/core/README.md @@ -1,3 +1,3 @@ -# Litmus +# Acre -Litmus is a “liquid staking” solution that allows people to earn yield on their Bitcoin via yield farming on Ethereum. +Acre is a “liquid staking” solution that allows people to earn yield on their Bitcoin via yield farming on Ethereum. diff --git a/core/contracts/Litmus.sol b/core/contracts/Acre.sol similarity index 91% rename from core/contracts/Litmus.sol rename to core/contracts/Acre.sol index 1379f2628..cb6ed5f33 100644 --- a/core/contracts/Litmus.sol +++ b/core/contracts/Acre.sol @@ -4,6 +4,6 @@ pragma solidity ^0.8.21; // Uncomment this line to use console.log // import "hardhat/console.sol"; -contract Litmus { +contract Acre { // TODO: add your implementation } diff --git a/core/deploy/01_deploy_litmus.ts b/core/deploy/01_deploy_acre.ts similarity index 83% rename from core/deploy/01_deploy_litmus.ts rename to core/deploy/01_deploy_acre.ts index bce73b50c..3266a1986 100644 --- a/core/deploy/01_deploy_litmus.ts +++ b/core/deploy/01_deploy_acre.ts @@ -5,9 +5,9 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { const { deployments } = hre const { log } = deployments - log("Deploying Litmus contract") + log("Deploying Acre contract") } export default func -func.tags = ["Litmus"] +func.tags = ["Acre"] diff --git a/core/test/Litmus.test.ts b/core/test/Acre.test.ts similarity index 78% rename from core/test/Litmus.test.ts rename to core/test/Acre.test.ts index b9452a9c7..97775ba4b 100644 --- a/core/test/Litmus.test.ts +++ b/core/test/Acre.test.ts @@ -1,4 +1,4 @@ -describe("Litmus", () => { +describe("Acre", () => { describe("Add your tests", () => { it("Should validate something", async () => {}) })