From 2868eef6cabdbac5157b09deff3c64f89e4208f4 Mon Sep 17 00:00:00 2001 From: Pascal Marco Caversaccio Date: Wed, 5 Jun 2024 12:37:04 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20=20Fix=20Broken=20Link?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pascal Marco Caversaccio --- src/snekmate/auth/ownable.vy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snekmate/auth/ownable.vy b/src/snekmate/auth/ownable.vy index 35c05a21..79f813ec 100644 --- a/src/snekmate/auth/ownable.vy +++ b/src/snekmate/auth/ownable.vy @@ -10,7 +10,7 @@ By default, the owner account will be the one that deploys the contract. This can later be changed with `transfer_ownership`. An exemplary integration can be found in the ERC-20 implementation here: - https://github.com/pcaversaccio/snekmate/blob/main/src/snekmate/tokens/ERC20.vy. + https://github.com/pcaversaccio/snekmate/blob/main/src/snekmate/tokens/erc20.vy. The implementation is inspired by OpenZeppelin's implementation here: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol. """