You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type Trust implements Event @entity {
id: ID! # Concatenation of token address, user address and canSendTo address
canSendToAddress: String!
canSendTo: Safe # The safe who is doing the trusting, ie. when I trust you, you can send to me
safeAddress: String!
safe: Safe # The safe who is receiving trust
limit: BigInt! # The amount in freckles that can currently be sent along this edge - this changes with transactions
limitPercentage: BigInt! # The amount of trust, expressed as a percentage - this only changes when a user adjusts it
}
The text was updated successfully, but these errors were encountered:
I believe it's about improving the comments in that snipet.
The "user" word is not correct in this context and has to be substituted by "the safe that is being trusted".
The text was updated successfully, but these errors were encountered: