mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-31 11:56:00 +00:00
* 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
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { deploy } from './ethers-lib'
|
|
|
|
(async () => {
|
|
try {
|
|
const result = await deploy('MyToken', [])
|
|
console.log(`address: ${result.address}`)
|
|
} catch (e) {
|
|
console.log(e.message)
|
|
}
|
|
})() |