We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b5d19 commit c35fda8Copy full SHA for c35fda8
src/handlers/expenditures/expenditureMadeViaStake.ts
@@ -3,6 +3,9 @@ import {
3
CreateUserStakeDocument,
4
CreateUserStakeMutation,
5
CreateUserStakeMutationVariables,
6
+ UpdateColonyActionDocument,
7
+ UpdateColonyActionMutation,
8
+ UpdateColonyActionMutationVariables,
9
UpdateExpenditureDocument,
10
UpdateExpenditureMutation,
11
UpdateExpenditureMutationVariables,
@@ -63,4 +66,15 @@ export default async (event: ContractEvent): Promise<void> => {
63
66
},
64
67
65
68
);
69
+
70
+ await mutate<UpdateColonyActionMutation, UpdateColonyActionMutationVariables>(
71
72
+ {
73
+ input: {
74
+ id: event.transactionHash,
75
+ showInActionsList: true,
76
+ initiatorAddress: creator,
77
+ },
78
79
+ );
80
};
0 commit comments