-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: bech32
Address Hooks
#10613
Merged
Merged
feat: bech32
Address Hooks
#10613
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
dbad30b
feat(vats): first cut of Address Hooks in JS
michaelfig 5014cf9
build(deps): regenerate `yarn.lock`s
michaelfig 159098b
feat(vtransfer): port some `address-hooks.js` functions to Go
michaelfig c8ad417
docs(cosmic-proto): generate initial typedoc
michaelfig File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,11 +1,11 @@ | ||||||||||||||||||||||||||||||||
package types | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||
"bytes" | ||||||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||||||
"net/url" | ||||||||||||||||||||||||||||||||
"strings" | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/codec" | ||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/types/bech32" | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" | ||||||||||||||||||||||||||||||||
clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" | ||||||||||||||||||||||||||||||||
|
@@ -18,48 +18,97 @@ type AddressRole string | |||||||||||||||||||||||||||||||
const ( | ||||||||||||||||||||||||||||||||
RoleSender AddressRole = "Sender" | ||||||||||||||||||||||||||||||||
RoleReceiver AddressRole = "Receiver" | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
AddressHookVersion = 0 | ||||||||||||||||||||||||||||||||
BaseAddressLengthBytes = 2 | ||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
func trimSlashPrefix(s string) string { | ||||||||||||||||||||||||||||||||
return strings.TrimPrefix(s, "/") | ||||||||||||||||||||||||||||||||
// AddressHookMagic is a magic byte prefix that identifies a hooked address. | ||||||||||||||||||||||||||||||||
// Chosen to make bech32 address hooks that look like "agoric10rch..." | ||||||||||||||||||||||||||||||||
var AddressHookMagic = []byte{0x78, 0xf1, 0x70 | AddressHookVersion} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
func init() { | ||||||||||||||||||||||||||||||||
if AddressHookVersion&0x0f != AddressHookVersion { | ||||||||||||||||||||||||||||||||
panic(fmt.Sprintf("AddressHookVersion must be less than 0x10, got 0x%x", AddressHookVersion)) | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
// ExtractBaseAddress extracts the base address from a parameterized address. | ||||||||||||||||||||||||||||||||
// It removes all subpath and query components from addr. | ||||||||||||||||||||||||||||||||
// ExtractBaseAddress extracts the base address from an Address Hook. It | ||||||||||||||||||||||||||||||||
// returns addr verbatim if it is not an Address Hook. | ||||||||||||||||||||||||||||||||
func ExtractBaseAddress(addr string) (string, error) { | ||||||||||||||||||||||||||||||||
parsed, err := url.Parse(addr) | ||||||||||||||||||||||||||||||||
baseAddr, _, err := SplitHookedAddress(addr) | ||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||
return "", err | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
return baseAddr, nil | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
// SplitHookedAddress splits a hooked address into its base address and hook data. | ||||||||||||||||||||||||||||||||
// For the JS implementation, look at @agoric/cosmic-proto/src/address-hooks.js. | ||||||||||||||||||||||||||||||||
func SplitHookedAddress(addr string) (string, []byte, error) { | ||||||||||||||||||||||||||||||||
prefix, payload, err := bech32.DecodeAndConvert(addr) | ||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||
return "", []byte{}, err | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
// Specify the fields and values we expect. Unspecified fields will only | ||||||||||||||||||||||||||||||||
// match if they are zero values in order to be robust against extensions to | ||||||||||||||||||||||||||||||||
// the url.URL struct. | ||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||
// Remove leading slashes from the path fields so that only parsed relative | ||||||||||||||||||||||||||||||||
// paths match the expected test. | ||||||||||||||||||||||||||||||||
expected := url.URL{ | ||||||||||||||||||||||||||||||||
Path: trimSlashPrefix(parsed.Path), | ||||||||||||||||||||||||||||||||
RawPath: trimSlashPrefix(parsed.RawPath), | ||||||||||||||||||||||||||||||||
RawQuery: parsed.RawQuery, | ||||||||||||||||||||||||||||||||
Fragment: parsed.Fragment, | ||||||||||||||||||||||||||||||||
RawFragment: parsed.RawFragment, | ||||||||||||||||||||||||||||||||
bz := bytes.TrimPrefix(payload, AddressHookMagic) | ||||||||||||||||||||||||||||||||
if len(bz) == len(payload) { | ||||||||||||||||||||||||||||||||
// Return an unhooked address. | ||||||||||||||||||||||||||||||||
return addr, []byte{}, nil | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
Comment on lines
+54
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For forward compatibility, this should probably error upon encountering a hooked address with an unknown version.
Suggested change
(and likewise in the JS version) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
// Skip over parsing control flags. | ||||||||||||||||||||||||||||||||
ForceQuery: parsed.ForceQuery, | ||||||||||||||||||||||||||||||||
OmitHost: parsed.OmitHost, | ||||||||||||||||||||||||||||||||
if len(bz) < BaseAddressLengthBytes { | ||||||||||||||||||||||||||||||||
return "", []byte{}, fmt.Errorf("hooked address must have at least %d bytes", BaseAddressLengthBytes) | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
if *parsed != expected { | ||||||||||||||||||||||||||||||||
return "", fmt.Errorf("address must be relative path with optional query and fragment, got %s", addr) | ||||||||||||||||||||||||||||||||
b := 0 | ||||||||||||||||||||||||||||||||
for i := BaseAddressLengthBytes - 1; i >= 0; i -= 1 { | ||||||||||||||||||||||||||||||||
byteVal := bz[len(bz)-1-i] | ||||||||||||||||||||||||||||||||
b <<= 8 | ||||||||||||||||||||||||||||||||
b |= int(byteVal) | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
baseAddr, _, _ := strings.Cut(expected.Path, "/") | ||||||||||||||||||||||||||||||||
if baseAddr == "" { | ||||||||||||||||||||||||||||||||
return "", fmt.Errorf("base address cannot be empty") | ||||||||||||||||||||||||||||||||
payloadEnd := len(bz) - BaseAddressLengthBytes | ||||||||||||||||||||||||||||||||
if b > payloadEnd { | ||||||||||||||||||||||||||||||||
return "", []byte{}, fmt.Errorf("base address length 0x%x is longer than payload end 0x%x", b, payloadEnd) | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return baseAddr, nil | ||||||||||||||||||||||||||||||||
baseAddressBuf := bz[0:b] | ||||||||||||||||||||||||||||||||
baseAddress, err := bech32.ConvertAndEncode(prefix, baseAddressBuf) | ||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||
return "", []byte{}, err | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return baseAddress, bz[b:payloadEnd], nil | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
// JoinHookedAddress joins a base bech32 address with hook data to create a | ||||||||||||||||||||||||||||||||
// hooked bech32 address. | ||||||||||||||||||||||||||||||||
// For the JS implementation, look at @agoric/cosmic-proto/src/address-hooks.js | ||||||||||||||||||||||||||||||||
func JoinHookedAddress(baseAddr string, hookData []byte) (string, error) { | ||||||||||||||||||||||||||||||||
prefix, bz, err := bech32.DecodeAndConvert(baseAddr) | ||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||
return "", err | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
b := len(bz) | ||||||||||||||||||||||||||||||||
maxB := 1<<(8*BaseAddressLengthBytes-1) + 1 | ||||||||||||||||||||||||||||||||
if b > maxB { | ||||||||||||||||||||||||||||||||
return "", fmt.Errorf("base address length 0x%x is longer than the maximum 0x%x", b, maxB) | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
payload := make([]byte, 0, len(AddressHookMagic)+b+len(hookData)+BaseAddressLengthBytes) | ||||||||||||||||||||||||||||||||
payload = append(payload, AddressHookMagic...) | ||||||||||||||||||||||||||||||||
payload = append(payload, bz...) | ||||||||||||||||||||||||||||||||
payload = append(payload, hookData...) | ||||||||||||||||||||||||||||||||
baLen := make([]byte, BaseAddressLengthBytes) | ||||||||||||||||||||||||||||||||
for i := BaseAddressLengthBytes - 1; i >= 0; i -= 1 { | ||||||||||||||||||||||||||||||||
baLen[i] = byte(b) | ||||||||||||||||||||||||||||||||
b >>= 8 | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
payload = append(payload, baLen...) | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
return bech32.ConvertAndEncode(prefix, payload) | ||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||
// extractBaseTransferData returns the base address from the transferData.Sender | ||||||||||||||||||||||||||||||||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bz
is mnemonic for something like "bytez", a play on "bytes"?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's a Golang convention I picked up from Golang
json
andprotobuf
codecs.