aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/migrations/config/multisig_sample.ts
blob: d65ab06d2d9bfe4660f34fdf5c9bff9c38999cd7 (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,
    },
};