-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
6,235 additions
and
1,198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules/ | ||
.idea/ | ||
buildResults/ | ||
dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Generate IDriss Send Icon - IDriss.xyz</title> | ||
</head> | ||
<body> | ||
<h2>Generate button for IDriss Send</h2> | ||
<label> | ||
<span>Name to be shown</span> | ||
<input name="identifier" type="text"> | ||
</label> | ||
<label> | ||
<span>Wallet address</span> | ||
<input name="recipient" type="text"> | ||
</label> | ||
|
||
<div class="result link"> | ||
<h3>Link</h3> | ||
<div>https://www.idriss.xyz/send</div> | ||
</div> | ||
<div class="result html"> | ||
<h3>Html</h3> | ||
<div><script src="https://www.idriss.xyz/static/js/send/idrissSendToAnyoneSDK.js"></script><a href="https://www.idriss.xyz/send" onclick="idrissShowSendToAnyonePopup({},event)">Send me crypto</a></div> | ||
</div> | ||
<p>For more advanced users see <a href="https://github.com/idriss-crypto/send-to-anyone-core">our SDK</a></p> | ||
|
||
<script src="../static/js/send/generateSendToAnyoneCode.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
console.log('Idriss sendToAnyone script') | ||
|
||
export async function idrissShowSendToAnyonePopup(config, e) { | ||
e.preventDefault(); | ||
const {idrissShowSendToAnyonePopup} = await import(/* webpackPrefetch: true */"@idriss-crypto/send-to-anyone-core"); | ||
return idrissShowSendToAnyonePopup(config, e); | ||
} | ||
|
||
export async function idrissLoadSendToAnyoneWidget() { | ||
return (await import(/* webpackPrefetch: true */"@idriss-crypto/send-to-anyone-core")).IdrissSendToAnyoneWidget; | ||
} | ||
|
||
window.idrissShowSendToAnyonePopup = idrissShowSendToAnyonePopup; | ||
window.idrissLoadSendToAnyoneWidget = idrissLoadSendToAnyoneWidget; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.