Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8927d6b
📦 NEW: Add user base
crazyrabbitLTC Jun 15, 2020
8cc1012
👌 IMPROVE: Add userBase (db) to window
crazyrabbitLTC Jun 15, 2020
74b197d
📦 NEW: Add Matic
crazyrabbitLTC Jun 15, 2020
059cd7c
👌 IMPROVE: Add Matic
crazyrabbitLTC Jun 15, 2020
2727c2b
Merge branch 'develop' into feature/userbase
crazyrabbitLTC Jun 15, 2020
499b6ad
👌 IMPROVE: Fix Matic and UserBase Support
crazyrabbitLTC Jun 15, 2020
76c98bc
👌 IMPROVE: disable User base for the moment
crazyrabbitLTC Jun 15, 2020
03aef87
📦 NEW: working userbase!
crazyrabbitLTC Jun 15, 2020
274170a
🐛 FIX: Add types to DB class
crazyrabbitLTC Jun 15, 2020
dbbb922
👌 IMPROVE: truncating code
crazyrabbitLTC Jun 15, 2020
c27c04c
🐛 FIX: remove modal
crazyrabbitLTC Jun 16, 2020
8e236bd
🐛 FIX: warnings
crazyrabbitLTC Jun 16, 2020
eed2ee6
📦 NEW: HTML for adding a contract dynamically
crazyrabbitLTC Jun 16, 2020
ffa1cd7
🐛 FIX: Fix support for multiple contracts
crazyrabbitLTC Jun 16, 2020
7966763
🐛 FIX: Fix multiple Contracts
crazyrabbitLTC Jun 16, 2020
6456a89
📦 NEW: Add listener for User Address
crazyrabbitLTC Jun 17, 2020
9e56907
👌 IMPROVE: Add event for Balance Change
crazyrabbitLTC Jun 17, 2020
5031f01
👌 IMPROVE: Add event listenin for NFT
crazyrabbitLTC Jun 17, 2020
6c4c86f
📦 NEW: add more coverage for NFT events.
crazyrabbitLTC Jun 17, 2020
40dd561
👌 IMPROVE: Catch and emit nft Load errors
crazyrabbitLTC Jun 17, 2020
f4b757a
🐛 FIX: Catch and emit NFT load Errors
crazyrabbitLTC Jun 17, 2020
4acdfda
👌 IMPROVE: Refactor Event for rejected + 3box
crazyrabbitLTC Jun 17, 2020
85d13a7
📦 NEW: Add event to EthTransfer
crazyrabbitLTC Jun 17, 2020
d93b751
👌 IMPROVE: add Eth trasnfer to a listen function
crazyrabbitLTC Jun 17, 2020
b2ada5a
🐛 FIX: Fix send Ether Problem
crazyrabbitLTC Jun 29, 2020
c7b1041
🐛 FIX: Small tweak
crazyrabbitLTC Jun 29, 2020
f99ed67
🐛 FIX: PAsses test
crazyrabbitLTC Jun 29, 2020
ea8e656
🐛 FIX: small changes
crazyrabbitLTC Jul 8, 2020
b595272
🐛 FIX: dappHero window object, "is enabled" now works
crazyrabbitLTC Jul 8, 2020
5ef41fd
👌 IMPROVE: Connect to Metamask button works with Enabled STate
crazyrabbitLTC Jul 8, 2020
210f3af
🐛 FIX: Prevent HTML5 event on webflow connect metamask
crazyrabbitLTC Jul 8, 2020
6a26c5e
🐛 FIX: A fix on errors
crazyrabbitLTC Jul 12, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmrc 2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
1 change: 1 addition & 0 deletions .nvmrc 2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12.14.1
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"react-dev-utils": "10.0.0",
"react-device-detect": "^1.11.14",
"react-dom": "^16.12.0",
"react-modal": "^3.11.2",
"react-toast-notifications": "^2.4.0",
"react-tooltip": "^3.11.6",
"resolve": "1.12.2",
Expand All @@ -83,6 +84,7 @@
"ts-pnp": "1.1.5",
"typescript": "^3.7.5",
"url-loader": "2.3.0",
"userbase-js": "^1.4.1",
"webpack": "4.41.2",
"webpack-dev-server": "3.9.0",
"webpack-manifest-plugin": "2.2.0",
Expand Down
16 changes: 16 additions & 0 deletions public/index-ERC20-Mainnet.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,22 @@ <h1>Wrapped Eth!</h1>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>

<script>
document.addEventListener(
"dappHeroConfigLoaded",
({ detail: dappHero }) => {
// Inside here you can listen to any event you want
console.log("It's loaded");
dappHero.listenToTransactionStatusChange(data => {
console.log("Listening to transtaction status change", data);
});
dappHero.listenToSmartContractBlockchainEvent(data => {
console.log("The blockChain Events: ", data)
})
}
);
</script>
<script
src=""
id="dh-apiKey"
Expand Down
Loading