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
1 change: 1 addition & 0 deletions motoko/filevault/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"internet_identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"type": "custom",
"init_arg": "(opt record { new_flow_origins = opt vec { \"http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943\" } })",
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"remote": {
"id": {
Expand Down
2 changes: 1 addition & 1 deletion motoko/filevault/frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import '../index.css';
const network = process.env.DFX_NETWORK;
const identityProvider =
network === 'ic'
? 'https://identity.ic0.app' // Mainnet
? 'https://id.ai/' // Mainnet
: 'http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943'; // Local

function App() {
Expand Down
1 change: 1 addition & 0 deletions motoko/nft-creator/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"internet_identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"frontend": {},
"init_arg": "(opt record { new_flow_origins = opt vec { \"http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943\" } })",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
Expand Down
2 changes: 1 addition & 1 deletion motoko/nft-creator/frontend/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dotenv.config({ path: path.resolve(__dirname, "../.env") });
process.env.II_URL =
process.env.DFX_NETWORK === "local"
? `http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943/`
: `https://identity.internetcomputer.org/`;
: `https://id.ai/`;

export default defineConfig({
base: "./",
Expand Down
1 change: 1 addition & 0 deletions motoko/tokenmania/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"internet_identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"type": "custom",
"init_arg": "(opt record { new_flow_origins = opt vec { \"http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943\" } })",
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"remote": {
"id": {
Expand Down
2 changes: 1 addition & 1 deletion motoko/tokenmania/frontend/src/InternetIdentity.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createActor, canisterId } from 'declarations/backend';
const network = process.env.DFX_NETWORK;
const identityProvider =
network === 'ic'
? 'https://identity.ic0.app' // Mainnet
? 'https://id.ai/' // Mainnet
: 'http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943'; // Local

const InternetIdentity = ({ setActor, isAuthenticated, setIsAuthenticated }) => {
Expand Down
1 change: 1 addition & 0 deletions motoko/who_am_i/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"internet_identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"type": "custom",
"init_arg": "(opt record { new_flow_origins = opt vec { \"http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943\" } })",
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"remote": {
"id": {
Expand Down
2 changes: 1 addition & 1 deletion motoko/who_am_i/frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { canisterId } from 'declarations/backend/index.js';
const network = process.env.DFX_NETWORK;
const identityProvider =
network === 'ic'
? 'https://identity.ic0.app' // Mainnet
? 'https://id.ai/' // Mainnet
: 'http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943'; // Local

// Reusable button component
Expand Down
1 change: 1 addition & 0 deletions rust/tokenmania/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz",
"init_arg": "(opt record { new_flow_origins = opt vec { \"http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943\" } })",
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"remote": {
"id": {
Expand Down
2 changes: 1 addition & 1 deletion rust/tokenmania/frontend/src/InternetIdentity.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { createActor, canisterId } from 'declarations/backend';
const network = process.env.DFX_NETWORK;
const identityProvider =
network === 'ic'
? 'https://identity.ic0.app' // Mainnet
? 'https://id.ai/' // Mainnet
: 'http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943'; // Local

const InternetIdentity = ({ setActor, isAuthenticated, setIsAuthenticated }) => {
Expand Down
1 change: 1 addition & 0 deletions rust/who_am_i/dfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"internet_identity": {
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"type": "custom",
"init_arg": "(opt record { new_flow_origins = opt vec { \"http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943\" } })",
"specified_id": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"remote": {
"id": {
Expand Down
2 changes: 1 addition & 1 deletion rust/who_am_i/frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { canisterId } from 'declarations/backend/index.js';
const network = process.env.DFX_NETWORK;
const identityProvider =
network === 'ic'
? 'https://identity.ic0.app' // Mainnet
? 'https://id.ai/' // Mainnet
: 'http://rdmx6-jaaaa-aaaaa-aaadq-cai.localhost:4943'; // Local

// Reusable button component
Expand Down