testmode -> livemode
You can test Winter based on your testmode contract and push that to production with your mainnet contract.
/createProject({
sandbox: true, // NOTE! This param tells us this is a sandbox project.
contractAddress: 0xTestContract,
...
// corresponding test contract info
})/createProject({
projectId: 10 // Send Winter the project ID you got in sandbox
sandbox: false, // NOTE! This param tells us this is a mainnet project.
contractAddress: 0xMainnetContract,
...
// corresponding mainnet contract info
})Last updated