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
NOTE: the zero address is reserved for the default config for all tokens with unset configs.
@@ -2147,7 +2147,7 @@ type TokenGovernanceConfig @entity {
2147
2147
####################
2148
2148
# Helper Entities #
2149
2149
####################
2150
-
typeStreamRevision@entity {
2150
+
typeStreamRevision@entity(immutable: false) {
2151
2151
"""
2152
2152
ID composed of: keccak256(abi.encode(sender,receiver))-tokenAddress
2153
2153
"""
@@ -2165,7 +2165,7 @@ type StreamRevision @entity {
2165
2165
"""
2166
2166
Token: A higher order entity created for super tokens (and underlying tokens) that are "valid" (tokens that have Superfluid's host contract address set as the host).
2167
2167
"""
2168
-
typeToken@entity {
2168
+
typeToken@entity(immutable: false) {
2169
2169
"""
2170
2170
ID: the token address
2171
2171
"""
@@ -2202,7 +2202,7 @@ type Token @entity {
2202
2202
governanceConfig: TokenGovernanceConfig
2203
2203
}
2204
2204
2205
-
typeResolverEntry@entity {
2205
+
typeResolverEntry@entity(immutable: false) {
2206
2206
"""
2207
2207
ID: the keccak256 hash of the set name
2208
2208
"""
@@ -2224,7 +2224,7 @@ type ResolverEntry @entity {
2224
2224
"""
2225
2225
AccountTokenSnapshot: An aggregate entity which aggregates data between an `account`'s interaction with `token`.
0 commit comments