We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 221a5d5 commit eccf626Copy full SHA for eccf626
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@gnosis.pm/safe-react-gateway-sdk",
3
- "version": "2.8.5",
+ "version": "2.8.6",
4
"main": "dist/index.min.js",
5
"types": "dist/index.d.ts",
6
"files": [
src/types/decoded-data.ts
@@ -2,11 +2,14 @@ export type DecodedDataRequest = {
data: string
}
+type ParamValue = string | ParamValue[]
+
7
export type DecodedDataBasicParameter = {
8
name: string
9
type: string
- value: string
10
+ value: ParamValue
11
12
13
export type DecodedDataParameterValue = {
14
operation: 0 | 1
15
to: string
0 commit comments