-
Notifications
You must be signed in to change notification settings - Fork 38
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
[TP-2147] Add Gem Game contract #195
Conversation
interface IDeployer { | ||
function deploy(bytes memory bytecode, bytes32 salt) external payable returns (address deployedAddress_); | ||
function deployAndInit(bytes memory bytecode, bytes32 salt, bytes calldata init) | ||
external | ||
payable | ||
returns (address deployedAddress_); | ||
function deployedAddress(bytes calldata bytecode, address sender, bytes32 salt) | ||
external | ||
view | ||
returns (address deployedAddress_); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@drinkcoffee thoughts on moving this somewhere where it can be reused? Something else we could do is install the contract-deployer repository and potentially import from there 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Pano.. here is your oat milk ☕
…m/immutable/contracts into ps/tp-2147/add-gems-game-contract
| Environment/Network | Deployment Address | Commit Hash | | ||
|--------------------------|--------------------|-------------| | ||
| imtbl-zkevm-testnet | - | - | | ||
| imtbl-zkevm-mainnet | - | - | | ||
|
||
# Status | ||
|
||
Contract threat models and audits: | ||
|
||
| Description | Date |Version Audited | Link to Report | | ||
|---------------------------|------------------|-----------------|----------------| | ||
| Not audited and no threat model | - | - | - | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will populate these in a follow-up PR
Adds a new contract -
GemGame
.This contract includes a single function which emits an event. This event is intended to be indexed off-chain.