Skip to content

Commit

Permalink
Tzip 32 update (#3016)
Browse files Browse the repository at this point in the history
* fix: clean up println to be console.log

* fix: clean up parisnet to be pariscnet
  • Loading branch information
hui-an-yang authored Jul 26, 2024
1 parent 4229891 commit c5e277c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 14,829 deletions.
2 changes: 1 addition & 1 deletion apps/taquito-test-dapp/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const rpcUrls: Record<SupportedNetworks, string> = {
[NetworkType.MAINNET]: "https://mainnet.ecadinfra.com",
[NetworkType.GHOSTNET]: "https://ghostnet.ecadinfra.com/",
[NetworkType.OXFORDNET]: "https://oxfordnet.ecadinfra.com/",
[NetworkType.PARISNET]: "https://rpc.parisnet.teztnets.com/",
[NetworkType.PARISNET]: "https://rpc.pariscnet.teztnets.com/",
[NetworkType.CUSTOM]: "https://ghostnet.ecadinfra.com/",
};

Expand Down
2 changes: 1 addition & 1 deletion docs/rpc_nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ values={[
| SmartPy | Ghostnet | https://ghostnet.smartpy.io | [Check](https://ghostnet.smartpy.io/chains/main/blocks/head/header) |
| Tezos Foundation | Mainnet | https://rpc.tzbeta.net/ | [Check](https://rpc.tzbeta.net/chains/main/blocks/head/header) |
| Tezos Foundation | Ghostnet | https://rpc.ghostnet.teztnets.com/ | [Check](https://rpc.ghostnet.teztnets.com/chains/main/blocks/head/header) |
| Tezos Foundation | Parisnet | https://rpc.parisnet.teztnets.com/ | [Check](https://rpc.parisnet.teztnets.com/chains/main/blocks/head/header) |
| Tezos Foundation | Parisnet | https://rpc.pariscnet.teztnets.com/ | [Check](https://rpc.pariscnet.teztnets.com/chains/main/blocks/head/header) |

*If you are aware of a public node missing from our list or our information is inaccurate, please help us by submitting an issue or pull request on our GitHub page.*
</TabItem>
Expand Down
6 changes: 3 additions & 3 deletions docs/signing.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ InMemorySigner.fromSecretKey('edsk2rKA8YEExg9Zo2qNPiQnnYheF1DhqjLVmfKdxiFfu5GyGR
return Tezos.signer.sign(bytes, new Uint8Array([parseInt(magicByte, 16)]))
})
.then(signed => {
println(JSON.stringify(signed, null, 2));
console.log(JSON.stringify(signed, null, 2));
})
.catch((error) => println(`Error: ${error} ${JSON.stringify(error, null, 2)}`));
.catch((error) => console.log(`Error: ${error} ${JSON.stringify(error, null, 2)}`));
```

</TabItem>
Expand All @@ -219,7 +219,7 @@ const payload = {
signingType: SigningType.RAW,
payload: magicByte + bytes
}
wallet.client.requestSignPayload(payload).then(signed => println(JSON.stringify(signed, null, 2)))
wallet.client.requestSignPayload(payload).then(signed => console.log(JSON.stringify(signed, null, 2)))
```

</TabItem>
Expand Down
Loading

0 comments on commit c5e277c

Please sign in to comment.