pull/9/head
VPcodebase 3 years ago
commit d4cb8b8d8f
  1. 9
      .env
  2. 3
      .gitignore
  3. 5
      src/web3/parseByteCode.tsx

@ -0,0 +1,9 @@
REACT_APP_RPC_URL_SHARD0=http://internal.s0.t.hmny.io
REACT_APP_RPC_URL_SHARD1=https://api.s1.t.hmny.io
REACT_APP_RPC_URL_SHARD2=https://api.s2.t.hmny.io
REACT_APP_RPC_URL_SHARD3=https://api.s3.t.hmny.io
REACT_APP_AVAILABLE_SHARDS=0,1,2,3
REACT_APP_EXPLORER_V1_API_URL=https://explorer.pops.one:8888
REACT_APP_INDEXER_IPFS_GATEWAY=https://ipfs.io/ipfs/
REACT_APP_PROD_ADDRESS=https://explorer-v2-api.hmny.io
#REACT_APP_DEV_ADDRESS=https://ws.explorer-v2.hmny.io

3
.gitignore vendored

@ -32,5 +32,4 @@ yarn.lock
.firebaserc
firebase.json
firebase-debug.log
.firebase
.env
.firebase

@ -130,9 +130,10 @@ export const DisplaySignature = (props: any = {}) => {
if (!parsed || !event || !abi) {
return <></>;
}
return (
<>
<Text size={"small"}>
{event.name}(
<>
{abi.inputs.map((input: any, i: number) => {
@ -168,7 +169,7 @@ export const DisplaySignature = (props: any = {}) => {
})}
</>
)
</>
</Text>
);
};

Loading…
Cancel
Save