mirror of
https://github.com/status-im/liquid-funding.git
synced 2025-01-10 19:47:04 +00:00
disable contract deploys
This commit is contained in:
parent
daaf651dcd
commit
c6dc7d8fda
@ -4,8 +4,8 @@ module.exports = {
|
|||||||
// Blockchain node to deploy the contracts
|
// Blockchain node to deploy the contracts
|
||||||
deployment: {
|
deployment: {
|
||||||
host: "localhost", // Host of the blockchain node
|
host: "localhost", // Host of the blockchain node
|
||||||
port: 8546, // Port of the blockchain node
|
port: 8545, // Port of the blockchain node
|
||||||
type: "ws" // Type of connection (ws or rpc),
|
type: "rpc" // Type of connection (ws or rpc),
|
||||||
// Accounts to use instead of the default account to populate your wallet
|
// Accounts to use instead of the default account to populate your wallet
|
||||||
/*,accounts: [
|
/*,accounts: [
|
||||||
{
|
{
|
||||||
@ -37,16 +37,53 @@ module.exports = {
|
|||||||
// fromIndex: 0,
|
// fromIndex: 0,
|
||||||
// args: [100]
|
// args: [100]
|
||||||
},
|
},
|
||||||
LiquidPledgingMock: {
|
LiquidPledgingMock: {deploy: false},
|
||||||
|
|
||||||
},
|
|
||||||
LPFactory: {
|
LPFactory: {
|
||||||
|
deploy: false,
|
||||||
args: {
|
args: {
|
||||||
_vaultBase: "$LPVault",
|
_vaultBase: "$LPVault",
|
||||||
_lpBase: "$LiquidPledgingMock"
|
_lpBase: "$LiquidPledgingMock"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
RecoveryVault: {},
|
RecoveryVault: {},
|
||||||
|
|
||||||
|
|
||||||
|
ACL: { deploy: false },
|
||||||
|
ACLHelpers: { deploy: false },
|
||||||
|
AppStorage: { deploy: false },
|
||||||
|
AragonApp: { deploy: false },
|
||||||
|
EtherTokenConstant: { deploy: false },
|
||||||
|
Initializable: { deploy: false },
|
||||||
|
IsContract: { deploy: false },
|
||||||
|
ACLSyntaxSugar: { deploy: false },
|
||||||
|
AppProxyPinned: { deploy: false },
|
||||||
|
AppProxyUpgradeable: { deploy: false },
|
||||||
|
EVMScriptRegistry: { deploy: false },
|
||||||
|
EVMScriptRunner: { deploy: false },
|
||||||
|
EVMScriptRegistryConstants: { deploy: false },
|
||||||
|
ScriptHelpers: { deploy: false },
|
||||||
|
CallsScript: { deploy: false },
|
||||||
|
DelegateScript: { deploy: false },
|
||||||
|
DeployDelegateScript: { deploy: false },
|
||||||
|
AppProxyFactory: { deploy: false },
|
||||||
|
DAOFactory: { deploy: false },
|
||||||
|
EVMScriptRegistryFactory: { deploy: false },
|
||||||
|
Kernel: { deploy: false },
|
||||||
|
KernelProxy: { deploy: false },
|
||||||
|
KernelConstants: { deploy: false },
|
||||||
|
KernelStorage: { deploy: false },
|
||||||
|
LPConstants: { deploy: false },
|
||||||
|
LiquidPledgingACLHelpers: { deploy: false },
|
||||||
|
LiquidPledging: { deploy: false },
|
||||||
|
LiquidPledgingBase: { deploy: false },
|
||||||
|
LiquidPledgingPlugins: { deploy: false },
|
||||||
|
LiquidPledgingStorage: { deploy: false },
|
||||||
|
PledgeAdmins: { deploy: false },
|
||||||
|
Pledges: { deploy: false },
|
||||||
|
StandardToken: { deploy: false },
|
||||||
|
TestSimpleDelegatePlugin: { deploy: false },
|
||||||
|
TestSimpleDelegatePluginFactory: { deploy: false },
|
||||||
|
TestSimpleProjectPluginFactory: { deploy: false },
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user