Skip to content

Commit

Permalink
fix base64url import
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzel98 committed Sep 9, 2024
1 parent 7f52bca commit 7f706f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"author": "",
"license": "ISC",
"files": [
"/src/**/*.sol",
"src/**/*.sol",
"lib/FreshCryptoLib/solidity/**/*",
"foundry.toml",
"remappings.txt",
"README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/libraries/utils/Base64URL.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT AND Apache-2.0
pragma solidity 0.8.23;

import "openzeppelin-contracts/contracts/utils/Base64.sol";
import { Base64 } from "@openzeppelin/contracts/utils/Base64.sol";

library Base64URL {
function encode(bytes memory data) internal pure returns (string memory) {
Expand Down

0 comments on commit 7f706f5

Please sign in to comment.