Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: use new testnet WETH mint #202

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs.renegade.fi/docs/technical-reference/typescript-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ import { createOrder } from "@renegade-fi/node"

```jsx
await createOrder(config, {
base: "0xcf8a4dbdc5c23a599bf045784b3740b1722c86dd",
base: "0xc3414a7ef14aaaa9c4522dfc00a4e66e74e9c25a",
quote: "0xdf8d259c04020562717557f2b5a3cf28e92707d1",
side: "buy",
amount: BigInt(1000000000000000000),
Expand Down Expand Up @@ -865,7 +865,7 @@ const config = createAuthConfig({
});

const bundle = await getExternalMatchBundle(config, {
base: "0xcf8a4dbdc5c23a599bf045784b3740b1722c86dd", // WETH
base: "0xc3414a7ef14aaaa9c4522dfc00a4e66e74e9c25a", // WETH
quote: "0xdf8d259c04020562717557f2b5a3cf28e92707d1", // USDC
side: "buy",
amount: BigInt(1000000000000000000), // 1 * 10^18
Expand Down
Loading