Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit b717431

Browse files
authored
update contract addresses and ABIs (#513)
1 parent d1d28c5 commit b717431

File tree

2 files changed

+47
-8
lines changed

2 files changed

+47
-8
lines changed

crates/shared/artifacts/abi/ai_token.json

Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,19 @@
6767
],
6868
"stateMutability": "view"
6969
},
70+
{
71+
"type": "function",
72+
"name": "TRANSFER_ROLE",
73+
"inputs": [],
74+
"outputs": [
75+
{
76+
"name": "",
77+
"type": "bytes32",
78+
"internalType": "bytes32"
79+
}
80+
],
81+
"stateMutability": "view"
82+
},
7083
{
7184
"type": "function",
7285
"name": "allowance",
@@ -115,6 +128,19 @@
115128
],
116129
"stateMutability": "nonpayable"
117130
},
131+
{
132+
"type": "function",
133+
"name": "approveTransferAddress",
134+
"inputs": [
135+
{
136+
"name": "transferAddress",
137+
"type": "address",
138+
"internalType": "address"
139+
}
140+
],
141+
"outputs": [],
142+
"stateMutability": "nonpayable"
143+
},
118144
{
119145
"type": "function",
120146
"name": "balanceOf",
@@ -398,6 +424,19 @@
398424
"outputs": [],
399425
"stateMutability": "nonpayable"
400426
},
427+
{
428+
"type": "function",
429+
"name": "revokeTransferAddress",
430+
"inputs": [
431+
{
432+
"name": "transferAddress",
433+
"type": "address",
434+
"internalType": "address"
435+
}
436+
],
437+
"outputs": [],
438+
"stateMutability": "nonpayable"
439+
},
401440
{
402441
"type": "function",
403442
"name": "supportsInterface",
@@ -453,7 +492,7 @@
453492
"internalType": "address"
454493
},
455494
{
456-
"name": "value",
495+
"name": "amount",
457496
"type": "uint256",
458497
"internalType": "uint256"
459498
}
@@ -482,7 +521,7 @@
482521
"internalType": "address"
483522
},
484523
{
485-
"name": "value",
524+
"name": "amount",
486525
"type": "uint256",
487526
"internalType": "uint256"
488527
}

crates/shared/src/web3/contracts/constants/addresses.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ pub mod contract_addresses {
2222
pub mod contract_addresses {
2323
use super::*;
2424
pub const PRIME_NETWORK_ADDRESS: Address =
25-
Address::new(hex!("0x1B831318291C3C3eEd5D2f3377A3Cfe95Fb53c34"));
25+
Address::new(hex!("0x8eA4f11DbfDfE2D7f8fB64Dd2c9dd4Ed610bf03E"));
2626
pub const AI_TOKEN_ADDRESS: Address =
27-
Address::new(hex!("0xB2Ab233218232FF1880A473F17d8E70DCCDE0ec4"));
27+
Address::new(hex!("0xAF874da2758fd319656D07cAD856EE1220c949d6"));
2828
pub const COMPUTE_REGISTRY_ADDRESS: Address =
29-
Address::new(hex!("0x147f99D458Fb0Fb283167d8dAf45E276Eed8EFdC"));
29+
Address::new(hex!("0x43308a48E7bf1349e0f1732e4B027af6770d8f64"));
3030
pub const DOMAIN_REGISTRY_ADDRESS: Address =
31-
Address::new(hex!("0x05363E5fC277c2EF9bd41b544dc300c658C4Ab98"));
31+
Address::new(hex!("0xc3dC276d7D23eDb8E17D40B9d04dc016a94E3380"));
3232
pub const STAKE_MANAGER_ADDRESS: Address =
33-
Address::new(hex!("0xe546CFADD36ffB647830450994DB39Bb1992F028"));
33+
Address::new(hex!("0x5bD0CFDCD2d5D548A0d161CB47234798701c91BE"));
3434
pub const COMPUTE_POOL_ADDRESS: Address =
35-
Address::new(hex!("0x552DBd5886D87D8566283547052CCfD795631f6F"));
35+
Address::new(hex!("0x8c924BE4413931384A917bE76F4f8Aa6A56a674c"));
3636
}
3737

3838
pub use contract_addresses::*;

0 commit comments

Comments
 (0)