mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-25 04:09:28 +00:00
10 lines
201 B
Nim
10 lines
201 B
Nim
import pkg/chronos
|
|
import pkg/stint
|
|
import pkg/ethers
|
|
import pkg/ethers/erc20
|
|
|
|
type
|
|
TestToken* = ref object of Erc20Token
|
|
|
|
proc mint*(token: TestToken, holder: Address, amount: UInt256) {.contract.}
|