biblioteca
Advanced tools
Comparing version 0.0.0 to 0.0.2
{ | ||
"name": "biblioteca", | ||
"version": "0.0.0", | ||
"version": "0.0.2", | ||
"devDependencies": { | ||
@@ -5,0 +5,0 @@ "@ethersproject/abi": "^5.7.0", |
@@ -1,13 +0,25 @@ | ||
# Sample Hardhat Project | ||
# Biblioteca | ||
This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a script that deploys that contract. | ||
Smart Contract Library | ||
Try running some of the following tasks: | ||
## Examples | ||
```shell | ||
npx hardhat help | ||
npx hardhat test | ||
REPORT_GAS=true npx hardhat test | ||
npx hardhat node | ||
npx hardhat run scripts/deploy.js | ||
``` | ||
### Fee Token | ||
```solidity | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity 0.8.17; | ||
import "biblioteca/contracts/FeeToken.sol"; | ||
contract MyFeeToken is FeeToken | ||
{ | ||
constructor() FeeToken("My Token", "MTKN", // Name and Symbol | ||
address(this), // Vault Address | ||
100, 200, 0, // Fees: 2% buy 1% sell 0% P2P | ||
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, // Router Address | ||
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) // Base Token Address | ||
{ | ||
} | ||
} | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
17233
25
0