@murphy-labs/strateg-protocol-sopt
v0.0.48
Published
StrategOperatingPaymentToken is a Solidity smart contract that extends the functionality of ERC20 tokens with additional features to facilitate payments and allowances for specific Strateg infrastructure operations. It allows users to establish operation
Downloads
7
Readme
StrategOperatingPaymentToken Smart Contract
StrategOperatingPaymentToken is a Solidity smart contract that extends the functionality of ERC20 tokens with additional features to facilitate payments and allowances for specific Strateg infrastructure operations. It allows users to establish operation allowances to strateg vaults or position manager. The contract is based on the OpenZeppelin library, ensuring security and reliability through widely tested and audited code.
Features
ERC20 Token Functionality: This smart contract inherits from the OpenZeppelin's
ERC20Upgradeable
contract, providing all the standard ERC20 token functionalities liketransfer
,transferFrom
, andbalanceOf
.Permit Functionality: The contract also utilizes the
ERC20PermitUpgradeable
extension to enable users to approve allowances for an operation using a permit function, allowing for a gasless approval process.Burn Functionality: The contract includes the
ERC20BurnableUpgradeable
extension, allowing token holders to burn their tokens, removing them from the circulating supply.Ownable: The contract inherits from
OwnableUpgradeable
, which ensures that only the contract's owner has the ability to set the operator proxy and payment fee.
Getting Started
To deploy and interact with this smart contract, follow these steps:
Make sure you have a compatible development environment, such as Remix, Truffle, or Hardhat.
Set the SPDX-License-Identifier in the smart contract file to the desired license.
Ensure you have the OpenZeppelin library installed. The contract imports several contracts from the OpenZeppelin library:
@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol
@openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-ERC20PermitUpgradeable.sol
@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol
@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
Deploy the contract to your desired Ethereum network.
Usage
Initialize the Contract: After deploying the contract, call the
initialize
function with the desired name and symbol for the ERC20 token.Set Operator Proxy: Only the owner of the contract can set the operator proxy by calling the
setOperatorProxy
function and providing the address of the proxy.Set Payment Fee: The contract owner can set the payment fee (in basis points) by calling the
setPaymentFee
function.Mint Tokens: Users can mint tokens to their address by sending Ether to the
mint
function. The amount of Ether sent will be converted to tokens.Burn Tokens: Users can burn their tokens by calling the
burn
function with the desired token amount.Approve Operation: Users can approve an operator to spend tokens on their behalf for a specific operation using the
approveOperation
function.Execute Payment: The operator proxy can execute a payment on behalf of a user by calling the
executePayment
function, providing the payer's address, the recipient's address, the operator's address, and the payment amount. The payment amount will be deducted from the payer's balance, and a configurable payment fee will be deducted and sent to the contract owner.
Error Handling
The contract includes three custom errors:
NotOperator
: Thrown when an other address than the operator proxy tries to execute a payment.InsufficientPaymentAllowance
: Thrown when the operation allowance is insufficient for the requested payment.PaymentExceedsBalance
: Thrown when the payer's balance is insufficient to execute the payment.
Security
This contract is built using the well-audited and tested OpenZeppelin library, which provides a solid foundation for secure smart contract development. However, as with any smart contract, it is essential to conduct thorough testing and security audits before deploying it to the mainnet.
Please exercise caution and ensure that the contract is appropriately audited before deploying it in a production environment.
License
This smart contract is licensed under the MIT License (SPDX-License-Identifier: MIT).
Note: Ensure to verify and audit the smart contract carefully before using it in any production environment. This README.md provides a high-level overview and does not cover all possible edge cases and vulnerabilities.