11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
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,
|
|
},
|
|
};
|