Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion developer-guides/juno-modules/feeshare.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down