Skip to content

Commit

Permalink
Rename Litmus to Acre
Browse files Browse the repository at this point in the history
The project has been renamed from Litmus to Acre.
  • Loading branch information
nkuba committed Nov 1, 2023
1 parent 2359564 commit f8123d6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions core/README.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion core/contracts/Litmus.sol → core/contracts/Acre.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion core/test/Litmus.test.ts → core/test/Acre.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
describe("Litmus", () => {
describe("Acre", () => {
describe("Add your tests", () => {
it("Should validate something", async () => {})
})
Expand Down

0 comments on commit f8123d6

Please sign in to comment.