We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to Issue 119 Rewards for bridge validators.
As it was identified in omni/bridge-ui#182, there is a need to provide the Fee Manager mode similar we provide the bridge mode.
If the Fee Manager contains functionality to calculate and distribute the reward only for one-side directed transfer, the method should be defined as:
function getFeeManagerMode() public pure returns(bytes4 _data) { return bytes4(keccak256(abi.encodePacked("manages-one-direction"))); }
If the Fee Manager contains functionality to calculate and distribute the reward for transfers in both directions, the method should be defined as:
function getFeeManagerMode() public pure returns(bytes4 _data) { return bytes4(keccak256(abi.encodePacked("manages-both-directions"))); }
The corresponding wrappers should be provided on the bridge contracts side.
The text was updated successfully, but these errors were encountered:
Merge pull request #150 from poanetwork/#148-fee-manager-mode-interface
1931586
Add fee manager mode interface
Available in the release 2.3.0
Sorry, something went wrong.
patitonar
No branches or pull requests
Related to Issue 119 Rewards for bridge validators.
As it was identified in omni/bridge-ui#182, there is a need to provide the Fee Manager mode similar we provide the bridge mode.
If the Fee Manager contains functionality to calculate and distribute the reward only for one-side directed transfer, the method should be defined as:
If the Fee Manager contains functionality to calculate and distribute the reward for transfers in both directions, the method should be defined as:
The corresponding wrappers should be provided on the bridge contracts side.
The text was updated successfully, but these errors were encountered: