Skip to content

Commit

Permalink
fix: Update readme to make code example run (#75)
Browse files Browse the repository at this point in the history
* Update readme to make code example run.

* Update README.md
  • Loading branch information
cazeth authored Jul 25, 2024
1 parent a9436e5 commit 549435c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your Cargo.toml

```
[dependencies]
uniswap-sdk-core = "1.0.0-rc";
uniswap-sdk-core = "1.0.0-rc"
```

And this to your code:
Expand All @@ -36,7 +36,7 @@ the `token!` macro.
// once. This can be useful if you are working with multiple parts of the library and want to avoid
// having to import each dependency individually.
// Import necessary preludes and types
use uniswap_sdk_core::prelude::*;
use uniswap_sdk_core::{prelude::*,token};

fn main() {
// Define the chain ID, address, decimals, symbol, and name for the token
Expand All @@ -58,7 +58,7 @@ fn main() {
println!("Are the tokens equal? {}", dai_token.equals(&another_dai_token));

// Example of sorting tokens
let another_token = token!(CHAIN_ID, "0x0000000000000000000000000000000000000002", DECIMALS, "ETH", "Ethereum");
let another_token = token!(CHAIN_ID, "0000000000000000000000000000000000000002", DECIMALS, "ETH", "Ethereum");
match dai_token.sorts_before(&another_token) {
Ok(true) => println!("DAI sorts before ETH"),
Ok(false) => println!("DAI does not sort before ETH"),
Expand Down

0 comments on commit 549435c

Please sign in to comment.