Skip to content

Commit

Permalink
fix: align fees with TEP-0089 jetton wallet discovery standards (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamIcarus authored Dec 18, 2024
1 parent 1cf39e2 commit 7755620
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/teps/tep89.tact
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ trait TEP89JettonDiscoverable with DiscoverWalletAddress {

receive(msg: ProvideWalletAddress){
let ctx = context();
nativeThrowUnless(ERROR_CODE_NEED_FEE, ctx.value <= ton("0.05")); // TODO
nativeThrowUnless(ERROR_CODE_NEED_FEE, ctx.value >= ton("0.0062"));

let init = self.discover_wallet_state_init(myAddress(), msg.owner_address);
let address = contractAddress(init);
let owner_address: Address? = null;
Expand Down

0 comments on commit 7755620

Please sign in to comment.