Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity =0.8.18; | |
import {VerifiableAddressArray} from "src/lib/VArray.sol"; | |
import {IVault} from "src/interfaces/IVault.sol"; | |
import {TokenInfo} from "src/Common.sol"; | |
import {IIndexToken} from "src/interfaces/IIndexToken.sol"; | |
import {SCALAR, fdiv, fmul, finv} from "./lib/FixedPoint.sol"; | |
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; | |
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; |
did:3:bafyreigx5dea4vnzhije5xakg453lpnokhktfokiryqmgs5fct6lkvcujy | |
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
✅ did:3:bafyreigx5dea4vnzhije5xakg453lpnokhktfokiryqmgs5fct6lkvcujy ✅ | |
Create your profile today to start building social connection and trust online at https://3Box.io/ |
find ./ -type f -name '*.spec.ts' -print0 | xargs -0 sed -i '/^start_string/s/it(/xit(/' | |
find ./src/modules -type f -exec sed -i '/^/s/it(/xit(/g' {} \; |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |