@@ -43,6 +43,7 @@ const (
4343 JettonWallet
4444 JettonWalletCoffeeLp
4545 JettonWalletGoverned
46+ JettonWalletGovernedV2
4647 JettonWalletV1
4748 JettonWalletV2
4849 Locker
@@ -202,6 +203,8 @@ func (c ContractInterface) String() string {
202203 return "jetton_wallet_coffee_lp"
203204 case JettonWalletGoverned :
204205 return "jetton_wallet_governed"
206+ case JettonWalletGovernedV2 :
207+ return "jetton_wallet_governed_v2"
205208 case JettonWalletV1 :
206209 return "jetton_wallet_v1"
207210 case JettonWalletV2 :
@@ -449,6 +452,8 @@ func ContractInterfaceFromString(s string) ContractInterface {
449452 return JettonWalletCoffeeLp
450453 case "jetton_wallet_governed" :
451454 return JettonWalletGoverned
455+ case "jetton_wallet_governed_v2" :
456+ return JettonWalletGovernedV2
452457 case "jetton_wallet_v1" :
453458 return JettonWalletV1
454459 case "jetton_wallet_v2" :
@@ -1657,6 +1662,8 @@ func (c ContractInterface) recursiveImplements(other ContractInterface) bool {
16571662 return JettonWallet .Implements (other )
16581663 case JettonWalletGoverned :
16591664 return JettonWallet .Implements (other )
1665+ case JettonWalletGovernedV2 :
1666+ return JettonWallet .Implements (other )
16601667 case JettonWalletV1 :
16611668 return JettonWallet .Implements (other )
16621669 case JettonWalletV2 :
@@ -2129,6 +2136,12 @@ var knownContracts = map[ton.Bits256]knownContractDescription{
21292136 Seqno ,
21302137 },
21312138 },
2139+ ton .MustParseHash ("e9aa0c02aafd5b38a295cc489019882439cf35c9738cc6dbeece4403dd066a5a" ): {
2140+ contractInterfaces : []ContractInterface {JettonWalletGovernedV2 },
2141+ getMethods : []InvokeFn {
2142+ GetWalletData ,
2143+ },
2144+ },
21322145 ton .MustParseHash ("edcc62f1752297fbda2408c09ca420b3af9528102e33b9e0a0ebe38553c18fec" ): {
21332146 contractInterfaces : []ContractInterface {OmnistonReferral },
21342147 getMethods : []InvokeFn {},
0 commit comments