mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-06 23:43:08 +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.}
|