Skip to content

Commit

Permalink
feat: claim name contract (#64)
Browse files Browse the repository at this point in the history
* feat: rename claimName and update abi

* feat: sign
  • Loading branch information
nachomazzara authored May 16, 2019
1 parent f0b589f commit 62c60d5
Show file tree
Hide file tree
Showing 5 changed files with 430 additions and 146 deletions.
13 changes: 0 additions & 13 deletions src/contracts/ClaimName.ts

This file was deleted.

13 changes: 13 additions & 0 deletions src/contracts/UsernameRegistry.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Contract } from '../ethereum'

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

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

getContractName() {
return 'UsernameRegistry'
}
}
132 changes: 0 additions & 132 deletions src/contracts/artifacts/ClaimName.json

This file was deleted.

Loading

0 comments on commit 62c60d5

Please sign in to comment.