Skip to content

Commit

Permalink
fix some stuff issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lehieuhust committed Aug 3, 2023
1 parent ced18b6 commit 300c5fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions packages/market-maker/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ export const deployToken = async (
client,
senderAddress,
(
await deployContract(client, senderAddress, "oraiswap_token", {
await deployContract(client, senderAddress, {
decimals,
symbol,
name,
mint: { minter: senderAddress },
initial_balances: [{ address: senderAddress, amount: "1000000000" }, ...initial_balances]
})
}, "oraiswap_token")
).contractAddress
);
};
Expand All @@ -144,11 +144,11 @@ export const deployOrderbook = async (
client,
senderAddress,
(
await deployContract(client, senderAddress, "oraiswap_limit_order", {
await deployContract(client, senderAddress, {
admin: senderAddress,
version: "0.0.1",
name: "Orderbook"
})
},"oraiswap_limit_order")
).contractAddress
);
};
Expand Down
1 change: 0 additions & 1 deletion packages/matching-relayer/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const mnemonicMinLength = 12; // 12 words
wallet,
{
gasPrice: GasPrice.fromString("0.002orai"),
prefix,
}
);

Expand Down

0 comments on commit 300c5fc

Please sign in to comment.