fix: call evmExecute with gas tokens, Solana improvements #74
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
evmExecute
was called without gas tokens, so this broke for example universal NFT/FT, when EVMonCall
expected to get tokens: https://github.com/zeta-chain/standard-contracts/blob/32d34c73083882e32389679e0f2228fe2facd4a3/contracts/token/contracts/evm/UniversalTokenCore.sol#L166-L170mnemonic
optional arg to Solana tasks~/.config/solana/id.json
if it doesn't exist (otherwisesolana program deploy
complains)yarn localnet
command to build and run localnetBoth Sui and Solana right now are using the same mnemonic for a default user. In both networks, default user gets tokens from the faucet. We'll need to refactor this to allow proper config for default users.
Using this version in zeta-chain/example-contracts#232