Skip to content

Commit

Permalink
working tx
Browse files Browse the repository at this point in the history
  • Loading branch information
uv-orbs committed Feb 1, 2022
1 parent b3ec7aa commit 51ee772
Show file tree
Hide file tree
Showing 14 changed files with 842 additions and 24,080 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,7 @@ typings/
.env

# next.js build output
.next
.next

# yuval
debugSigner.ts
5 changes: 3 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"ManagementServiceEndpoint": "http://34.235.246.172/services/matic-reader",
"EthereumEndpoint": "https://bsc-dataseed.binance.org/",
"EthereumEndpoint": "https://speedy-nodes-nyc.moralis.io/e25f7625703c58a9068b9947/bsc/mainnet",
"SignerEndpoint": "http://signer:7777",
"EthereumDiscountGasPriceFactor": 1,
"NodeOrbsAddress": "9f0988cd37f14dfe95d44cf21f9987526d6147ba"
"NodeOrbsAddress": "9f0988cd37f14dfe95d44cf21f9987526d6147ba",
"BIUrl": "http://logs.orbs.network:3001/putes/keepersew"
}
5 changes: 3 additions & 2 deletions custom_typings/orbs-signer-client/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
declare module 'orbs-signer-client' {
import { TransactionConfig, SignedTransaction } from 'web3-core';
import { SignedTransaction } from 'web3-core';
import { TxData } from "@ethereumjs/tx";

export default class Signer {
public constructor(host: string);
sign(transaction: TransactionConfig): Promise<SignedTransaction>;
sign(transaction: TxData, chainId?: Number, expectedSenderAddress?: String): Promise<SignedTransaction>;
}
}
Loading

0 comments on commit 51ee772

Please sign in to comment.