From 7830c5a476b3933ca19cca8d775279c4dd4a1da3 Mon Sep 17 00:00:00 2001 From: abs3ntdev Date: Tue, 28 May 2024 15:39:34 -0700 Subject: [PATCH 1/3] expose --- src/index.ts | 1 + src/utils/index.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 7fb9a8f9d1..4a28a07a03 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1097,6 +1097,7 @@ export { export { type DecodeFunctionDataErrorType, type DecodeFunctionDataParameters, + type DecodeFunctionDataReturnType, decodeFunctionData, } from './utils/abi/decodeFunctionData.js' export { diff --git a/src/utils/index.ts b/src/utils/index.ts index 64421d0d51..e9b2f2f366 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -86,6 +86,7 @@ export { export { type DecodeFunctionDataErrorType, type DecodeFunctionDataParameters, + type DecodeFunctionDataReturnType, decodeFunctionData, } from './abi/decodeFunctionData.js' export { From 7a741994318f38eb4abaaebe1c9a440264210f99 Mon Sep 17 00:00:00 2001 From: abs3ntdev Date: Tue, 28 May 2024 15:40:50 -0700 Subject: [PATCH 2/3] changeset --- .changeset/warm-radios-glow.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/warm-radios-glow.md diff --git a/.changeset/warm-radios-glow.md b/.changeset/warm-radios-glow.md new file mode 100644 index 0000000000..40967148a8 --- /dev/null +++ b/.changeset/warm-radios-glow.md @@ -0,0 +1,5 @@ +--- +"viem": patch +--- + +export DecodeFunctionDataReturnType to type decoded function data From 09d127a6c5ec5e5fc5042f8f310f06c77febc9aa Mon Sep 17 00:00:00 2001 From: jxom Date: Wed, 29 May 2024 08:42:46 +1000 Subject: [PATCH 3/3] Update warm-radios-glow.md --- .changeset/warm-radios-glow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/warm-radios-glow.md b/.changeset/warm-radios-glow.md index 40967148a8..6b0cbc3808 100644 --- a/.changeset/warm-radios-glow.md +++ b/.changeset/warm-radios-glow.md @@ -2,4 +2,4 @@ "viem": patch --- -export DecodeFunctionDataReturnType to type decoded function data +Exported `DecodeFunctionDataReturnType` type.