@0x:contracts-exchange Added the MixinStakingManager contract

This commit is contained in:
Alex Towle
2019-08-21 14:46:35 -07:00
parent 365cb161cf
commit 415af90ae7
10 changed files with 276 additions and 3 deletions

View File

@@ -9,6 +9,9 @@ export const constants = {
ExchangeFunctionName.RegisterAssetProxy,
ExchangeFunctionName.SimulateDispatchTransferFromCalls,
ExchangeFunctionName.TransferOwnership,
ExchangeFunctionName.UpdateProtocolFeeMultiplier,
ExchangeFunctionName.UpdateStakingAddress,
ExchangeFunctionName.UpdateWethAddress,
],
SINGLE_FILL_FN_NAMES: [
ExchangeFunctionName.FillOrder,

View File

@@ -32,4 +32,7 @@ export enum ExchangeFunctionName {
SetSignatureValidatorApproval = 'setSignatureValidatorApproval',
SimulateDispatchTransferFromCalls = 'simulateDispatchTransferFromCalls',
TransferOwnership = 'transferOwnership',
UpdateProtocolFeeMultiplier = 'updateProtocolFeeMultiplier',
UpdateStakingAddress = 'updateStakingAddress',
UpdateWethAddress = 'updateWethAddress',
}