Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
janek26 committed Jun 21, 2022
1 parent 1ade452 commit 0b8bb96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/dapp/src/services/token.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const mintToken = async (
const erc20Contract = new Contract(
Erc20Abi as Abi,
getErc20TokenAddress(network),
starknet.account,
starknet.account as any,
)

const address = starknet.selectedAddress
Expand All @@ -57,7 +57,7 @@ export const transfer = async (
const erc20Contract = new Contract(
Erc20Abi as any,
getErc20TokenAddress(network),
starknet.account,
starknet.account as any,
)

return erc20Contract.transfer(
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/.env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SEGMENT_WRITE_KEY=
# URL pointing to the API base e.g. https://foo.bar.com/v1
REACT_APP_ARGENT_API_BASE_URL=
#REACT_APP_ARGENT_API_BASE_URL=

0 comments on commit 0b8bb96

Please sign in to comment.