Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
What is the difference between the PoW giver contracts listed on ton.org and tonwhales.com/mining, and which ones are the correct ones?

Hey all - does anyone know why ther are different addresses between the PoW giver contracts listed here: https://ton.org/docs/#/howto/pow-givers and the ones listed here: https://tonwhales.com/mining (for example, giver 1: https://tonwhales.com/explorer/address/Ef-kkdY_B7p-77TLn2hUhM6QidWrrsl8FYWCIvBMpZKprKDH).

I am confused as to which ones are the right givers...


This question was imported from Telegram Chat: https://t.me/tondev_eng/1739

Votes Newest

Answers


The addresses listed in the two sources are different because they are encoded differently. However, they are essentially the same address. To convert the address to a "canonical" non-user-friendly form, you can use the following code in JavaScript:

new TonWeb.Address('kf-kkdY_B7p-77TLn2hUhM6QidWrrsl8FYWCIvBMpZKprBtN').toString(false);

This will convert the address to the canonical form -1:a491d63f07ba7eefb4cb9f685484ce9089d5abaec97c15858222f04ca592a9ac,
which is the same as the address listed in the first source.

1
1
wiki
Posted one year ago
15K Views
1 Answer
one year ago
one year ago
Tags