mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-08-28 05:24:44 +00:00
tokens: ERC1155 contract for tokens (#6376)
* tokens: ERC1155 contract for tokens * simplify 1155 * NFT and minter contracts * update NFT * update * update * update * update * NFT metadata JSON * update token metadata * flattened contracts
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { deploy } from './ethers-lib'
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
const result = await deploy('MyToken', [])
|
||||
console.log(`address: ${result.address}`)
|
||||
} catch (e) {
|
||||
console.log(e.message)
|
||||
}
|
||||
})()
|
||||
Reference in New Issue
Block a user