Skip to content

Commit

Permalink
After json2
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Oct 7, 2024
1 parent 33af5ba commit 95a797a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

document.addEventListener("DOMContentLoaded", function() {
window.eruda.init()
console.log('v44')
console.log('v45')
});

window.getNonce = async(address)=>{
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/index.evm.js
Original file line number Diff line number Diff line change
Expand Up @@ -6632,7 +6632,7 @@ class Worldapp {
if(response.ok) {
console.log('Before json');
response.json().then((transaction)=>{
console.log('After json', transaction);
console.log('After json2', transaction);
if(_optionalChain$1([transaction, 'optionalAccess', _7 => _7.external_id])) {
getProvider('worldchain').then((provider)=>{
provider.waitForTransaction(transaction.external_id).then((receipt)=>{
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/umd/index.evm.js
Original file line number Diff line number Diff line change
Expand Up @@ -6636,7 +6636,7 @@
if(response.ok) {
console.log('Before json');
response.json().then((transaction)=>{
console.log('After json', transaction);
console.log('After json2', transaction);
if(_optionalChain$1([transaction, 'optionalAccess', _7 => _7.external_id])) {
web3ClientEvm.getProvider('worldchain').then((provider)=>{
provider.waitForTransaction(transaction.external_id).then((receipt)=>{
Expand Down
2 changes: 1 addition & 1 deletion dist/umd/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/wallets/Worldapp.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default class Worldapp {
if(response.ok) {
console.log('Before json')
response.json().then((transaction)=>{
console.log('After json', transaction)
console.log('After json2', transaction)
if(transaction?.external_id) {
getProvider('worldchain').then((provider)=>{
provider.waitForTransaction(transaction.external_id).then((receipt)=>{
Expand Down

0 comments on commit 95a797a

Please sign in to comment.