Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import AddressBasedPaymentNetwork from '../address-based';

const CURRENT_VERSION = '0.1.0';

const supportedNetworks = ['mainnet', 'rinkeby', 'private'];
const supportedNetworks = ['mainnet', 'rinkeby', 'private', 'goerli'];

/**
* Implementation of the payment network to pay in ERC20 tokens based on an Ethereum address
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default class Erc20FeeProxyPaymentNetwork<
public supportedNetworks: string[] = [
'mainnet',
'rinkeby',
'goerli',
'private',
'matic',
'mumbai',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class Erc20ProxyPaymentNetwork<
public constructor(
public extensionId: ExtensionTypes.ID = ExtensionTypes.ID.PAYMENT_NETWORK_ERC20_PROXY_CONTRACT,
public currentVersion: string = CURRENT_VERSION,
public supportedNetworks: string[] = ['mainnet', 'rinkeby', 'private'],
public supportedNetworks: string[] = ['mainnet', 'rinkeby', 'goerli', 'private'],
public supportedCurrencyType: RequestLogicTypes.CURRENCY = RequestLogicTypes.CURRENCY.ERC20,
) {
super(extensionId, currentVersion, supportedNetworks, supportedCurrencyType);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ export default class Erc777StreamPaymentNetwork<
public constructor(
extensionId: ExtensionTypes.ID = ExtensionTypes.ID.PAYMENT_NETWORK_ERC777_STREAM,
currentVersion: string = CURRENT_VERSION,
public supportedNetworks: string[] = ['matic', 'xdai', 'mumbai', 'rinkeby', 'arbitrum-rinkeby'],
public supportedNetworks: string[] = [
'matic',
'xdai',
'mumbai',
'rinkeby',
'goerli',
'arbitrum-rinkeby',
],
public supportedCurrencyType: RequestLogicTypes.CURRENCY = RequestLogicTypes.CURRENCY.ERC777,
) {
super(extensionId, currentVersion, supportedNetworks, supportedCurrencyType);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class EthereumFeeProxyPaymentNetwork<
public constructor(
extensionId: ExtensionTypes.ID = ExtensionTypes.ID.PAYMENT_NETWORK_ETH_FEE_PROXY_CONTRACT,
currentVersion: string = CURRENT_VERSION,
public supportedNetworks: string[] = ['mainnet', 'rinkeby', 'private'],
public supportedNetworks: string[] = ['mainnet', 'rinkeby', 'goerli', 'private'],
) {
super(extensionId, currentVersion, supportedNetworks, RequestLogicTypes.CURRENCY.ETH);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const CURRENT_VERSION = '0.3.0';
const supportedNetworks = [
'mainnet',
'rinkeby',
'goerli',
'xdai',
'sokol',
'fuse',
Expand Down