-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replacing GetOrigCaller()
with PrevRealm.Addr()
#1577
Comments
IsOriginCall
with PrevRealm.Addr()
GetOrigCaller
with PrevRealm.Addr()
GetOrigCaller
with PrevRealm.Addr()
GetOrigCaller()
with PrevRealm.Addr()
Before making changes everywhere, I would like to request people to provide examples of proper usage of GetOrigCaller. This way, we can ensure that we only modify what is necessary, rather than altering everything. @piux2: I believe you mentioned examples during a previous call. |
AssertOriginCall is used to ensure there is no middleman. GetOriginCaller validates who signed the transaction, while PrevRealm is used for whitelisting contracts. These functions can be used separately or combined to achieve varying levels of security. For example, consider contracts that allow users to claim NFTs and AirDrops from a pre-screened wallet list. In this scenario, GetOriginCaller is necessary to validate the request. However, the claim request can be sent either directly from the user to the Owner's contract or through a third-party entity, such as a token distributor or an NFT auction house. The Contract Owner has further two options: To prevent middleman involvement, use GetOriginCaller + AssertOriginCall. |
I and many developers have not been neck deep for years in obscure smart contract security concerns. The selling point of Gno.land is that it doesn't have a steep learning curve. IMO 😉, the "safest" of these security behaviors should be enabled by default, without the realm developer needing to figure out which of these weird functions they have to call at the top of every public realm function. That's the job of the Gno.land infrastructure. It should be built-in, with a way for advanced developers to override if they have studied the security details and want to change it. |
@jefft0 |
Here's the idea I had in mind: The default is the check you mentioned to "prevent middleman involvement". The VM enforces this without the realm function needing to call a function like |
Additional note: the removal of |
There's another need we're balancing here: the desire to build a platform which is very powerful in terms of "composability". Aside from the technical complications of having something like "AssertOriginCall" by default and disabling it ad-hoc, it just means users or other contracts cannot "script around" a method. AssertOriginCall is like placing your data directly in the HTML of a page (if someone wants it, they have to scrape it => in Gno, they have to call it with MsgCall in a tx), the opposite is having the data in a public API (=> you can just call a realm's function from another realm or MsgRun). |
Can we centralize all the Maybe #1475? |
centralizing on #1475 |
Description
GetOrigCaller
, in pair withAssertOriginCall
&IsOriginCall
, should be replaced withPrevRealm.Addr()
to accommodate calls that are not made only by EOAs. This is because limiting calls only to EOAs blocks a lot of useful functionality, including account abstraction, smart contract wallets, situations where you would want a realm/package to call another realm/package, etc.As is the case with Ethereum's
msg.sender
&tx.origin
, wheretx.origin
was kept as a legacy functionality, there is not much use for theGetOrigCaller
function - we should replace its usage withPrevRealm.Addr()
.I propose for the beginning that we replace all calls to
GetOrigCaller
withPrevRealm.Addr()
, where the intended functionality is to get the previous caller of the function. Also, I propose removing anyAssertOriginCall
checks in theexamples/
folder where it makes sense.The text was updated successfully, but these errors were encountered: