Skip to content
Open
Show file tree
Hide file tree
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: 3 additions & 1 deletion gnosisSafe.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ import { ChainID } from "@anydotcrypto/metatransactions";
Our library currently supports MAINNET or ROPSTEN.

```
// Blockchain ID (Mainnet = 3)
// Blockchain ID (Mainnet = 1)
ChainID.MAINNET;
ChainID.ROPSTEN;
ChainID.RINKEBY;
ChainID.KOVAN;
```

The Gnosis Safe library only supports NONCE replay protection. Check out our [wallet contracts](proxyAccounts) for more exotic replay protection.
Expand Down
4 changes: 3 additions & 1 deletion proxyAccounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ import { ChainID, ReplayProtectionType } from "@anydotcrypto/metatransactions";
Our library currently supports MAINNET or ROPSTEN.

```
// Blockchain ID (Mainnet = 3)
// Blockchain ID (Mainnet = 1)
ChainID.MAINNET;
ChainID.ROPSTEN;
ChainID.RINKEBY;
ChainID.KOVAN;
```

Our library has three types of replay protection (and more in-depth information can be [found here](https://github.com/PISAresearch/metamask-comp)):
Expand Down
2 changes: 2 additions & 0 deletions src/ts/forwarders/forwarderFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export enum ReplayProtectionType {
export enum ChainID {
MAINNET = 1,
ROPSTEN = 3,
RINKEBY = 4,
KOVAN = 42,
}

export enum ForwarderType {
Expand Down