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:
Evgeny
2025-10-28 22:12:47 +00:00
committed by GitHub
parent 7a858695bf
commit 6138c8e66b
12 changed files with 8936 additions and 0 deletions
+10
View File
@@ -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)
}
})()