aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/migrations/config/multisig_sample.ts
blob: eca54ba28d413a9457fa14331398e3ecb45cc578 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import {MultiSigConfigByNetwork} from '../../util/types';

// Make a copy of this file named `multisig.js` and input custom params as needed
export const multiSig: MultiSigConfigByNetwork = {
    kovan: {
        owners: [],
        confirmationsRequired: 0,
        secondsRequired: 0,
    },
};