Skip to content

Commit 8b439a0

Browse files
ci-botAniket-Engg
authored andcommitted
DeployAndPublish
1 parent 8b985e2 commit 8b439a0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

libs/remix-api/src/lib/plugins/matomo-events.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* import { trackMatomoEvent } from '@remix-api'
77
*
88
* trackMatomoEvent(plugin, { category: 'ai', action: 'remixAI', name: 'code_generation', isClick: true })
9-
* trackMatomoEvent(plugin, { category: 'udapp', action: 'DeployAndVerify', name: 'mainnet', isClick: true })
9+
* trackMatomoEvent(plugin, { category: 'udapp', action: 'DeployAndPublish', name: 'mainnet', isClick: true })
1010
* ```
1111
*
1212
* @example Common Events
@@ -15,7 +15,7 @@
1515
* { category: 'ai', action: 'remixAI', isClick: true }, { category: 'ai', action: 'explainFunction', isClick: true }
1616
*
1717
* // Contracts
18-
* { category: 'udapp', action: 'DeployAndVerify', isClick: true }, { category: 'udapp', action: 'sendTransactionFromGui', isClick: true }
18+
* { category: 'udapp', action: 'DeployAndPublish', isClick: true }, { category: 'udapp', action: 'sendTransactionFromGui', isClick: true }
1919
*
2020
* // Editor
2121
* { category: 'editor', action: 'save', isClick: true }, { category: 'editor', action: 'format', isClick: true }

libs/remix-api/src/lib/plugins/matomo/events/blockchain-events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export interface UdappEvent extends MatomoEventBase {
3838
| 'signUsingAccount'
3939
| 'contractDelegation'
4040
| 'useAtAddress'
41-
| 'DeployAndVerify'
41+
| 'DeployAndPublish'
4242
| 'DeployOnly'
4343
| 'DeployContractTo'
4444
| 'broadcastCompilationResult';

libs/remix-ui/run-tab/src/lib/actions/deploy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export const createInstance = async (
176176
plugin.compilersArtefacts.addResolvedContract(addressToString(address), data)
177177

178178
if (isVerifyChecked) {
179-
trackMatomoEvent(plugin, { category: 'udapp', action: 'DeployAndVerify', name: plugin.REACT_API.networkName, isClick: true })
179+
trackMatomoEvent(plugin, { category: 'udapp', action: 'DeployAndPublish', name: plugin.REACT_API.networkName, isClick: true })
180180

181181
try {
182182
const status = plugin.blockchain.getCurrentNetworkStatus()

0 commit comments

Comments
 (0)