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
Just like #1275, this register pattern allows us to call several grc20 tokens without manually importing it.
HOWEVER, it requires that token(or token's function) must be registered to registry contract which (AFAIK) can only be done by making new transaction call manually.
One way to resolve this limit is, re use architecture from faucet during certain process like below
use tx indexer to monitor chain activity
(if /vm.m_addpkg is success) check whether deployed contract is grc20 or not
(if it is grc20) proceed (make tx -> sign tx -> broadcast tx) using similar system from faucet
As you can see, it requires bit of 3rd party resources and honestly it would better if we can handle this on-chain.
If we can trigger other contract without jumping in from outside, we can do some automation I think.
WDYT ??
Description
Just like #1275, this
register
pattern allows us to call several grc20 tokens without manually importing it.HOWEVER, it requires that token(or token's function) must be registered to registry contract which (AFAIK) can only be done by making new transaction call manually.
One way to resolve this limit is, re use architecture from faucet during certain process like below
As you can see, it requires bit of 3rd party resources and honestly it would better if we can handle this on-chain.
If we can trigger other contract without jumping in from outside, we can do some automation I think.
WDYT ??
cc @zivkovicmilos @moul @dongwon8247 @notJoon @mconcat
The text was updated successfully, but these errors were encountered: