Skip to content

Commit

Permalink
fix: summary out of boundries error, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaghettiOverload committed Nov 8, 2023
1 parent e2d6766 commit 6221930
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cudosjs",
"version": "2.0.3",
"version": "2.0.4",
"author": "",
"description": "JavaScript SDK for Cudos Network",
"license": "ISC",
Expand Down
12 changes: 6 additions & 6 deletions src/stargate/modules/group/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class GroupModule {
value: MsgMultiSend.encode(multisendMsg).finish()
}],
title: 'Multi Bank Send Proposal',
summary: `Bank Send to: ${JSON.stringify(recipients)}`
summary: `Bank Send to Multiple Recipients`
})
}

Expand Down Expand Up @@ -189,7 +189,7 @@ export class GroupModule {
value: MsgUpdateGroupMembers.encode(msg).finish()
}],
title: "Update Group Members Proposal",
summary: `Proposed change: ${JSON.stringify(memberUpdates)}`
summary: `Proposal to change wallet members`

})
}
Expand Down Expand Up @@ -229,7 +229,7 @@ export class GroupModule {
value: MsgUpdateGroupMetadata.encode(msg).finish()
}],
title: 'Update Group Metadata Proposal',
summary: `Proposed change: ${metadata}`
summary: `Proposal to change wallet metadata`
})
}

Expand Down Expand Up @@ -267,7 +267,7 @@ export class GroupModule {
value: MsgUpdateGroupPolicyMetadata.encode(msg).finish()
}],
title: 'Update Group Policy Metadata Proposale',
summary: `Proposed change: ${metadata}`
summary: `Proposal to change wallet policy metadata`
})
}

Expand Down Expand Up @@ -319,8 +319,8 @@ export class GroupModule {
typeUrl: msgUpdateGroupPolicyDecisionPolicy.typeUrl,
value: MsgUpdateGroupPolicyDecisionPolicy.encode(msg).finish()
}],
title: 'Update Group Policy Decision Policy Proposal',
summary: `Proposed Change: ${JSON.stringify(decisionPolicy)}`
title: 'Update Group Decision Policy Proposal',
summary: `Proposal to change wallet decision policy`
})
}

Expand Down

0 comments on commit 6221930

Please sign in to comment.