aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/migrations/config/multisig_sample.ts
blob: dabeb7a4f1fdd6da7cf6d62a10b34c4efddffcbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { MultiSigConfigByNetwork } from '../../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,
    },
};