Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/getscatter/eos-sharp
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcs85 committed Oct 8, 2019
2 parents 99d131f + 43a0205 commit 121a7c7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,3 +336,22 @@ Eos eos = new Eos(new EosConfigurator()
ChainId = "aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906"
});
```
#### CombinedSignersProvider

Is also possible to combine multiple signature providers to complete all the signatures for a transaction

Example:

```csharp
Eos eos = new Eos(new EosConfigurator()
{
HttpEndpoint = "https://nodes.eos42.io", //Mainnet
ChainId = "aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906",
ExpireSeconds = 60,
SignProvider = new CombinedSignersProvider(new List<ISignProvider>() {
new SuperSecretSignProvider(),
new DefaultSignProvider("myprivatekey")
}),
});
```

0 comments on commit 121a7c7

Please sign in to comment.