From 3a2918ab6e165d0cdfc44bfc751f74338321cb1c Mon Sep 17 00:00:00 2001 From: gustavo Date: Fri, 31 Oct 2025 11:38:32 +0000 Subject: [PATCH] add addFromMsgValue() function to interface should probably add this function to the interface example, since Counter was updated --- docs/stylus/quickstart.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/stylus/quickstart.mdx b/docs/stylus/quickstart.mdx index 148b801455..a3b28c3042 100644 --- a/docs/stylus/quickstart.mdx +++ b/docs/stylus/quickstart.mdx @@ -273,6 +273,8 @@ interface ICounter { function addNumber(uint256 new_number) external; function increment() external; + + function addFromMsgValue() external payable; } ```