Skip to content
Draft
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
2 changes: 1 addition & 1 deletion Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ seeds = false
skip-lint = false

[programs.localnet]
oft = "HtaWt9At9Qz35XL7pTWddd8ktvEqdDPYQSTHvwnTZ89R"
oft = "7aJdnmHwaRWU4E9Fz5dREB8XiwDDxb4Jz3E2FvjGRnso"

[registry]
url = "https://api.apr.dev"
Expand Down
7 changes: 6 additions & 1 deletion contracts/gOFT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ contract gOFT is OFT {

function decimals() public pure override returns (uint8) {
// NOTE: Update this to the correct decimals for the token
return 6;
return 5;
}

function sharedDecimals() public pure override returns (uint8) {
// NOTE: Update this to the correct decimals for the token
return 5;
}
}
6 changes: 3 additions & 3 deletions deploy/gOFT.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ const contractName = 'gOFT'

////// UPDATE THESE VALUES //////
const tokenConfig = {
name: 'Hosico Cat',
symbol: 'HOSICO',
decimals: 6,
name: 'Bonk',
symbol: 'BONK',
decimals: 5,
}
////// UPDATE THESE VALUES //////

Expand Down
56 changes: 28 additions & 28 deletions deployments/glue-mainnet/gOFT.json

Large diffs are not rendered by default.

Loading