Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion payment-settler/worker-configuration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ declare namespace Cloudflare {
interface Env {
ENVIRONMENT: "dev" | "calibration" | "mainnet";
RPC_URL: "https://api.calibration.node.glif.io/" | "https://api.node.glif.io/";
FILBEAM_CONTRACT_ADDRESS: "0x96e13bC98fA0cdf01b07985c804960117EAB76E8" | "0x";
FILBEAM_CONTRACT_ADDRESS: "0x0000000000000000000000000000000000000000" | "0x010ca67040e80c8FdBF679680D09b94e2A9ac6B8" | "0x";
DEFAULT_LOCKUP_PERIOD_DAYS: 30;
FILECOIN_GENESIS_BLOCK_TIMESTAMP_MS: 1667326380000 | 1598306400000;
FILBEAM_CONTROLLER_PRIVATE_KEY: "0xabc";
Expand Down
4 changes: 2 additions & 2 deletions payment-settler/wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class_name = "TransactionMonitorWorkflow"
[env.dev.vars]
ENVIRONMENT = "dev"
RPC_URL = "https://api.calibration.node.glif.io/"
FILBEAM_CONTRACT_ADDRESS = "0x96e13bC98fA0cdf01b07985c804960117EAB76E8"
FILBEAM_CONTRACT_ADDRESS = "0x0000000000000000000000000000000000000000"
DEFAULT_LOCKUP_PERIOD_DAYS = 30 # 30 days lockup period
FILECOIN_GENESIS_BLOCK_TIMESTAMP_MS = 1667326380000 # Calibration network genesis timestamp in milliseconds

Expand All @@ -56,7 +56,7 @@ class_name = "TransactionMonitorWorkflow"
[env.calibration.vars]
ENVIRONMENT = "calibration"
RPC_URL = "https://api.calibration.node.glif.io/"
FILBEAM_CONTRACT_ADDRESS = "0x"
FILBEAM_CONTRACT_ADDRESS = "0x010ca67040e80c8FdBF679680D09b94e2A9ac6B8"
DEFAULT_LOCKUP_PERIOD_DAYS = 30 # 30 days lockup period
FILECOIN_GENESIS_BLOCK_TIMESTAMP_MS = 1667326380000 # Calibration network genesis timestamp in milliseconds
FILBEAM_CONTROLLER_PRIVATE_KEY = "0xabc"
Expand Down
2 changes: 1 addition & 1 deletion usage-reporter/worker-configuration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ declare namespace Cloudflare {
interface Env {
ENVIRONMENT: "dev" | "calibration" | "mainnet";
RPC_URL: "https://api.calibration.node.glif.io/" | "https://api.node.glif.io/";
FILBEAM_CONTRACT_ADDRESS: "0x96e13bC98fA0cdf01b07985c804960117EAB76E8" | "0x";
FILBEAM_CONTRACT_ADDRESS: "0x0000000000000000000000000000000000000000" | "0x010ca67040e80c8FdBF679680D09b94e2A9ac6B8" | "0x";
FILECOIN_GENESIS_BLOCK_TIMESTAMP_MS: "1667326380000" | "1598306400000";
DB: D1Database;
TRANSACTION_QUEUE: Queue;
Expand Down
4 changes: 2 additions & 2 deletions usage-reporter/wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ database_id = "8cc92155-16f6-426a-b782-2965e0daf100"
[env.dev.vars]
ENVIRONMENT = "dev"
RPC_URL = "https://api.calibration.node.glif.io/"
FILBEAM_CONTRACT_ADDRESS = "0x96e13bC98fA0cdf01b07985c804960117EAB76E8"
FILBEAM_CONTRACT_ADDRESS = "0x0000000000000000000000000000000000000000"
FILECOIN_GENESIS_BLOCK_TIMESTAMP_MS = "1667326380000"

[[env.dev.d1_databases]]
Expand All @@ -27,7 +27,7 @@ database_id = "8cc92155-16f6-426a-b782-2965e0daf101"
[env.calibration.vars]
ENVIRONMENT = "calibration"
RPC_URL = "https://api.calibration.node.glif.io/"
FILBEAM_CONTRACT_ADDRESS = "0x"
FILBEAM_CONTRACT_ADDRESS = "0x010ca67040e80c8FdBF679680D09b94e2A9ac6B8"
FILECOIN_GENESIS_BLOCK_TIMESTAMP_MS = "1667326380000"

[[env.calibration.d1_databases]]
Expand Down