From 24971a8586d915bf456cf2ba9410bff49fad2cb8 Mon Sep 17 00:00:00 2001 From: CODe <71spates.bravest@icloud.com> Date: Mon, 27 Jan 2025 15:46:28 +0100 Subject: [PATCH] Update feeshare.md --- developer-guides/juno-modules/feeshare.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer-guides/juno-modules/feeshare.md b/developer-guides/juno-modules/feeshare.md index 4cf3d31..5cc16c0 100644 --- a/developer-guides/juno-modules/feeshare.md +++ b/developer-guides/juno-modules/feeshare.md @@ -75,7 +75,7 @@ Example: * Factory instantiates Contract A, where the creator and admin is Factory * Anyone can now `junod tx feeshare register contract-a contract-a` * With this, all feeshare funds are saved in the contract-a balance -* To move these funds, your child contract needs a way to set a withdraw address. For example `ExecuteMsg::SetWithdrawAddress{address:juno123...}}` or do this on instantiate through the factory message payload. Just some other adderss we can withdraw the funds to +* To move these funds, your child contract needs a way to set a withdraw address. For example `ExecuteMsg::SetWithdrawAddress{address:juno123...}}` or do this on instantiate through the factory message payload. Just some other address we can withdraw the funds to * The child contract then has `ExecuteMsg::GetFeeShare{}` which takes the contracts balance minus any funds which are meant to be in the contract (ex: proposal deposits), and sends those tokens to the `juno123...` address set earlier ## Update Contract Withdraw Address