From e1a727366f77ec68b06aa24f8fd8c1cd8715731c Mon Sep 17 00:00:00 2001 From: lza_menace Date: Fri, 18 Nov 2022 12:42:03 -0800 Subject: [PATCH] change default fee --- src/SendIt.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SendIt.sol b/src/SendIt.sol index 1766287..ddcfbd9 100644 --- a/src/SendIt.sol +++ b/src/SendIt.sol @@ -8,7 +8,7 @@ import {Ownable} from "openzeppelin-contracts/access/Ownable.sol"; contract SendIt is Ownable { mapping(address => address) public addressVault; // users can store their personal vaults for ease of use - uint256 public usageFee = .0001 ether; // charge a small fee for the cost savings it provides + uint256 public usageFee = .00015 ether; // charge a small fee for the cost savings it provides event TokenTransfer(address indexed contractAddress, uint256 tokenIndex, address indexed from, address indexed to);