Skip to content

Commit

Permalink
feat: add erc721 collection (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
nachomazzara authored Oct 24, 2019
1 parent 68807a1 commit 7ad5c8f
Show file tree
Hide file tree
Showing 2 changed files with 894 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/contracts/ERC721Collection.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Contract } from '../ethereum'

const { abi } = require('./artifacts/ERC721Collection.json')

export class ERC721Collection extends Contract {
constructor(address: string) {
super(address, abi)
}

getContractName() {
return 'ERC721Collection'
}
}
Loading

0 comments on commit 7ad5c8f

Please sign in to comment.