From 6582f0fb71a00534897263563d56eaacd39ef35b Mon Sep 17 00:00:00 2001 From: Siemys Date: Fri, 26 Jul 2024 14:05:26 +0200 Subject: [PATCH 1/2] Update package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index dfb39d8..253265a 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.0.0", "description": "Solidity Merkle Mountain Range library", "repository": "git@github.com:HerodotusDev/solidity-mmr.git", - "author": "Herodotus Ltd", + "author": "Herodotus Dev Ltd", "license": "GPL-3.0", "private": false, "dependencies": { @@ -12,4 +12,4 @@ "@accumulators/memory": "^4.2.1", "ethers": "^5.7.2" } -} \ No newline at end of file +} From 3df27b81195d8746740f6a191a894bb7b3cbafab Mon Sep 17 00:00:00 2001 From: Siemys Date: Fri, 26 Jul 2024 14:05:52 +0200 Subject: [PATCH 2/2] Update StatelessMmr.sol --- src/lib/StatelessMmr.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/StatelessMmr.sol b/src/lib/StatelessMmr.sol index f90aac7..d25fe01 100644 --- a/src/lib/StatelessMmr.sol +++ b/src/lib/StatelessMmr.sol @@ -14,7 +14,7 @@ import "./StatelessMmrHelpers.sol"; /// /// @title StatelessMmr -- A Solidity implementation of Merkle Mountain Range -/// @author Herodotus Ltd +/// @author Herodotus Dev Ltd /// @notice Library for appending bytes32 values (i.e., acting as an accumulator) /// and verifying Merkle inclusion proofs ///