Skip to content

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
evilgoku committed Aug 16, 2023
1 parent 2a27cb5 commit 9e8b9eb
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 2 deletions.
Binary file modified Build/motoDEXweb.data.unityweb
Binary file not shown.
Binary file modified Build/motoDEXweb.framework.js.unityweb
Binary file not shown.
Binary file modified Build/motoDEXweb.wasm.unityweb
Binary file not shown.
2 changes: 1 addition & 1 deletion StreamingAssets/build_info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Build from EVIL at 16.08.2023 16:14:23
Build from EVIL at 16.08.2023 17:19:04
34 changes: 33 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,38 @@

};

const skaleMainnet = {
id: 1482601649,
name: "Skale Mainnet",
network: "skaleMainnet",
nativeCurrency: {
decimals: 18,
name: "sFuel",
symbol: "sFuel"
},
rpcUrls: {
default: {
http: ["https://mainnet.skalenodes.com/v1/green-giddy-denebola"],
webSocket: ['wss://mainnet.skalenodes.com/v1/green-giddy-denebola'],
},
public: {
http: ["https://mainnet.skalenodes.com/v1/green-giddy-denebola"],
webSocket: ['wss://mainnet.skalenodes.com/v1/green-giddy-denebola']
}
},
blockExplorers: {
etherscan: {
name: "Skale Scan",
url: "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com/"
},
default: {
name: "Skale Scan",
url: "https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com/"
}
}

};

const klaytnTestnet = {
id: 1001,
name: "Klaytn Testnet Baobab",
Expand Down Expand Up @@ -300,7 +332,7 @@



window.chains = [aurora, bscTestnet, auroraTestnet, polygon, eos, mantleTestnet, mantle, zetachainTestnet, skaleTestnet, klaytnTestnet, baseMainnet]
window.chains = [aurora, bscTestnet, auroraTestnet, polygon, eos, mantleTestnet, mantle, zetachainTestnet, skaleTestnet, skaleMainnet, klaytnTestnet, baseMainnet]

const projectId = 'd3d0c489a0d7d980f51628258bf880bd'

Expand Down
13 changes: 13 additions & 0 deletions web3/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,19 @@ async function addNetwork(chainId) {
blockExplorerUrls: ['https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com/']
}]
break;
case 1482601649 :
params = [{
chainId: '0x585eb4b1',
chainName: 'Skale Mainnet',
nativeCurrency: {
name: 'sFUEL',
symbol: 'sFUEL',
decimals: 18
},
rpcUrls: ['https://mainnet.skalenodes.com/v1/green-giddy-denebola'],
blockExplorerUrls: ['https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com/']
}]
break;
case 8453 :
params = [{
chainId: '0x2105',
Expand Down

0 comments on commit 9e8b9eb

Please sign in to comment.